如果我有一个写为字符串的正整数,例如"three"
or "forty nine"
,是否有一种简单的方法可以将其转换为整数?
我很高兴使用语言学来转换另一种方式,但我从未尝试过这种方式!
如果我有一个写为字符串的正整数,例如"three"
or "forty nine"
,是否有一种简单的方法可以将其转换为整数?
我很高兴使用语言学来转换另一种方式,但我从未尝试过这种方式!
查看numbers_in_words GitHub 项目。它似乎提供了您正在寻找的功能,至少对于英文数字字符串。
从项目文档:
require 'numbers_in_words'
require 'numbers_in_words/duck_punch'
112.in_words
#=> one hundred and twelve
"Seventy million, five-hundred and fifty six thousand point eight nine three".in_numbers
#=> 70556000.893