如何将单词转换为等效数字?

时间:2013-05-07 15:04:21

标签: ruby nlp linguistics

如果我有一个写为字符串的正整数,例如"three""forty nine",是否有一种简单的方法将其转换为整数?

我很高兴使用语言学来转换另一种方式,但我从未尝试过这种方式!

1 个答案:

答案 0 :(得分:6)

看看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