vote up 2 vote down star

I need some code in my program which takes a number as input and converts it into corresponding text e.g. 745 to "seven hundred forty five".

Now, I can write code for this, but is there any library or existing code I can use?

flag

0% accept rate
Working on a Euler Project problem, ye? – dala Aug 18 at 15:14
related: stackoverflow.com/questions/309884/… – Brad Gilbert Aug 18 at 15:17

4 Answers

vote up 12 vote down

From perldoc of Lingua::EN::Numbers:

use Lingua::EN::Numbers qw(num2en num2en_ordinal);

my $x = 234;
my $y = 54;
print "You have ", num2en($x), " things to do today!\n";
print "You will stop caring after the ", num2en_ordinal($y), ".\n";

prints:

You have two hundred and thirty-four things to do today!
You will stop caring after the fifty-fourth.
link|flag
vote up 2 vote down

You need to look at this stackoverflow question

From the above-mentioned link:

perl -MNumber::Spell -e 'print spell_number(2);'
link|flag
vote up 1 vote down

Take a look at the Math::BigInt::Named module.

link|flag
vote up 0 vote down

Also take a look at Nums2Words.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.