I'd like to inform you about the new modules in the Lingua:: hierarchy.

Lingua::CS::Num2Word

Lingua::DE::Num2Word

Lingua::Num2Word

Replies are listed 'Best First'.
Re: New Lingua:*:Num2Word modules
by cjf (Parson) on Jul 16, 2002 at 07:46 UTC

    Here are the links to the main page of each module (rather than directly to the tarballs):

    Definately cool, if you run the following example from the docs:

    use Lingua::Num2Word; my $numbers = Lingua::Num2Word->new; my $text = $numbers->cardinal('en', 123); print $text || "Can't convert number\n";

    It'll print out "One-Hundred Twenty-Three." I like it :).