法罗有没有办法把一个数字转换成文字。例如: 1200只=1,200。
这并不是很难实现,但只是好奇地知道。
发布于 2013-10-15 19:54:34
Integer>>asWords会这么做的。
Integer>>asWords
1200 asWords返回'one thousand, two hundred'。
1200 asWords
'one thousand, two hundred'
我是通过使用法罗的搜索工具搜索“千”找到的。
https://stackoverflow.com/questions/19385288
相似问题