如何在JavaScript中将单词转换为数字?
作为一个例子,有一个javascript / jQuery库/插件,它将取一个字符串“一百零二”并返回int 102。
var myInt = stringToInt("one hundred and two");
console.log(myInt);
=> 102
我特别需要字符串到数字的转换,而不是数字到字符串的转换。建议的解决方案很短:
jsfiddle.net/joepegler/g0vwy44n
答案 0 :(得分:2)
虽然自己做练习应该不是很困难,但这里有一个脚本可以做到这一点
http://javascript.about.com/library/bltoword.htm
编辑:我误解了你的问题,你想要反其道而行之。好吧,请检查此答案,然后选择https://stackoverflow.com/a/12014376/4651083答案 1 :(得分:1)
这个地址有一个例子。
http://jesusjzp.github.io/blog/2014/03/06/javascript-number-word-conversion/
Word to number和Number to Word。 你可以适应自己