在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中文網其他相關文章!