首頁 >後端開發 >Golang >如何從 Go 中的字串中刪除變音符號?

如何從 Go 中的字串中刪除變音符號?

Barbara Streisand
Barbara Streisand原創
2024-12-14 01:09:09193瀏覽

How to Remove Diacritics from Strings in Go?

使用 Go 刪除變音符號

將字串「žůžo」轉換為「zuzo」涉及刪除所有變音符號。這可以使用 Go 中的文字標準化中描述的標準 Go 庫來實現。

程式碼實作

以下程式碼範例示範如何使用這些函式庫:

package main

import (
    "fmt"
    "unicode"

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

func isMn(r rune) bool {
    return unicode.Is(unicode.Mn, r) // Mn: nonspacing marks
}

func main() {
    t := transform.Chain(norm.NFD, transform.RemoveFunc(isMn), norm.NFC)
    result, _, _ := transform.String(t, "žůžo")
    fmt.Println(result) // prints: zuzo
}

透過利用「transform」和「unicode/norm」函式庫的功能,您可以有效地從Go 程式中的UTF8 編碼字串中刪除變音符號。

以上是如何從 Go 中的字串中刪除變音符號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn