Friday, June 16, 2006

Plugin: NumbersToWords

In my RAILS application I need to convert numbers to words. I started writing own function but before I finish that I got an amazing Plugin.

This Plugin is capable to convert number to words.
Following are some examples

>> 5.to_english
=> "five"
>> 123456.to_english
=> "one hundred twenty-three thousand four hundred and fifty-six"
>> 2.5.to_english
=> "two"
>> (2.5).to_english
=> "two"
>> (2.5).to_dollars
=> "two dollars and fifty cents"
>> 5.to_japanese
=> "go"
>> (2.5).to_japanese
=> "ni"


install this plugin by :
script/plugin install http://svn.recentrambles.com/plugins/numbersToWords

0 Comments:

Post a Comment

<< Home