A Golang port of the Apache Lucene ASCII Folding Filter. This library converts alphabetic, numeric, and symbolic Unicode characters into their ASCII equivalents, if one exists.
Example Usage in a program:
package main
import "github.com/hkulekci/ascii-folding"
func main() {
print(asciiFolding.Fold("L' heure n' est plus à vanter cette franche camaraderie qui avait marqué les relations entre"))
}