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