gounidecode
CategoryNatural Language Processing
SubcategoryTransliteration
Stars0
Unicode transliterator (also known as unidecode) for Go
About gounidecode
Unicode transliterator (also known as unidecode) for Go
Use the following command to install gounidecode
go get -u github.com/fiam/gounidecode/unidecode
Example usage
package main
import (
"fmt"
"github.com/fiam/gounidecode/unidecode"
)
func main() {
fmt.Println(Unidecode("áéíóú")) // Will print aeiou
fmt.Println(Unidecode("\u5317\u4EB0")) // Will print Bei Jing
fmt.Println(Unidecode("Κνωσός")) // Will print Knosos
}
Frequently Asked Questions
What is gounidecode?
gounidecode is a Natural Language Processing library for the Go programming language. Unicode transliterator (also known as unidecode) for Go
How do I install gounidecode?
Install gounidecode with the Go module system using `go get fiam/gounidecode`. Check the repository for the current installation instructions.
What category does gounidecode belong to?
gounidecode is listed under Natural Language Processing, specifically Transliteration.