num2words:Golang软件包用于将数字转换为单词 源码
字数 Golang软件包将数字转换成单词。 例如: 148变成one hundred forty-eight 。 受此python库启发。 安装 运行go get -u github.com/vinbyte/num2words 用法 package main import ( "fmt" "github/vinbyte/num2words" ) func main() { n2w := num2words.New("en") res := n2w.NumberToWord(349) fmt.Println(res) } //output : three hundred forty-n
文件列表
num2words-main.zip
(预估有个13文件)
num2words-main
en.go
2KB
.gitignore
12B
go.mod
85B
en_test.go
1KB
utils.go
211B
num2words_test.go
443B
LICENSE
1KB
num2words.go
838B
go.sum
1024B
暂无评论