Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。
                        
                    
                
            
        
            
        
                
                    
                
            
                
                    想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                
                    5年前关闭。
            
        

    

如何在JavaScript中将单词转换为数字?

作为示例,有一个javascript / jQuery库/插件,它将采用字符串“一百零二”并返回int 102。

var myInt = stringToInt("one hundred and two");
console.log(myInt);
=> 102


我特别需要一个字符串到数字的转换,而不是数字到字符串的转换。建议的解决方案很短:

jsfiddle.net/joepegler/g0vwy44n

最佳答案

尽管作为练习自己做起来并不难,但这是一个脚本

http://javascript.about.com/library/bltoword.htm

编辑:我误读了您的问题,您想要相反。好吧,请先检查此答案,然后再https://stackoverflow.com/a/12014376/4651083

08-18 21:01
查看更多