Popularity
4.2
Declining
Activity
0.0
Stable
79
6
21

Programming language: Go

gounidecode alternatives and similar packages

Based on the "Natural Language Processing" category.
Alternatively, view gounidecode alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of gounidecode or a related project?

Add another 'Natural Language Processing' Package

README

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
}