>백엔드 개발 >Golang >Go의 문자열에서 발음 구별 부호를 어떻게 제거할 수 있나요?

Go의 문자열에서 발음 구별 부호를 어떻게 제거할 수 있나요?

Linda Hamilton
Linda Hamilton원래의
2024-12-08 11:53:14253검색

How Can I Remove Diacritics from Strings in Go?

Go에서 발음 구별 부호 제거

UTF-8로 인코딩된 문자열에서 발음 구별 부호(악센트 표시)를 제거하는 것은 일반적인 텍스트 처리 작업입니다. Go는 텍스트 정규화 유틸리티의 일부로 이러한 목적을 위해 여러 라이브러리를 제공합니다.

한 가지 접근 방식은 아래에 설명된 것처럼 여러 라이브러리를 결합하는 것입니다.

package main

import (
    "fmt"
    "unicode"

    "golang.org/x/text/transform"
    "golang.org/x/text/unicode/norm"
)

// isMn determines if a rune represents a nonspacing mark (diacritic).
func isMn(r rune) bool {
    return unicode.Is(unicode.Mn, r)
}

func main() {
    // Create a transformation chain to:
    // - Decompose the string into its unicode normalization form (NFD).
    // - Remove all nonspacing marks (diacritics).
    // - Recompose the string into its normalized form (NFC).
    t := transform.Chain(norm.NFD, transform.RemoveFunc(isMn), norm.NFC)

    // Apply the transformation to the input string "žůžo".
    result, _, _ := transform.String(t, "žůžo")

    // Print the resulting string, which is "zuzo" without diacritics.
    fmt.Println(result)
}

위 내용은 Go의 문자열에서 발음 구별 부호를 어떻게 제거할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.