Number to English Word Conversion Rails

后端 未结 6 2229
灰色年华
灰色年华 2020-12-16 11:19

Anybody knows the method to convert the numericals to english number words in rails?

I found some Ruby scripts to convert numbericals to english words for correspon

6条回答
  •  天涯浪人
    2020-12-16 11:36

    There is still the humanize gem that does exactly what you want...

    require 'humanize'
    23.humanize # => "twenty three"
    0.42.humanize(decimals_as: :digits) # => "zero point four two"
    

提交回复
热议问题