krconv -- Convert kana-character to roman-alphabet
Convert kana-characters to roman-alphabets (by hepburn romanization)
This package is required Go 1.16 or later.
Migrated repository to github.com/goark/krconv
import "github.com/goark/krconv"
package krconv_test
import (
"fmt"
"github.com/goark/krconv"
)
func ExampleConvert() {
s := "マツエ テッペイ めっちゃほりでぃ ナンバかげつで まんざい みるんだょっ"
fmt.Println(krconv.Convert(s))
//Output:
//matsue teppei metchahoridei nambakagetsude manzai mirundayotsu
}