Is there a library to convert integers into strings, so that they (integers) will be represented as words? For example:
21 => "twenty one"
I'm also interested in converting integers into strings that represent them as Roman numerals:
21 => "XXI"
It's not a problem for me to write such converting functions, but I don't want to reinvent the wheel.