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?
|
|
|||||
|
|
|
From perldoc of Lingua::EN::Numbers:
prints:
|
||
|
|
|
|
You need to look at this stackoverflow question From the above-mentioned link:
|
||
|
|
|
|
Take a look at the Math::BigInt::Named module. |
||
|
|
|
|
Also take a look at Nums2Words. |
|||
|
|