Print value of number (int) spelled out
Posted
by Ricardo Villamil
on Stack Overflow
See other posts from Stack Overflow
or by Ricardo Villamil
Published on 2010-04-08T14:32:26Z
Indexed on
2010/04/08
14:33 UTC
Read the original article
Hit count: 200
c#
Hi, is there an out-of-box way to spell out an int in C#? For example if I have:
int a = 53;
I want to print:
"fifty three"
not
"53"
If not, does anybody have any examples on how to accomplis this?
Thanks!
© Stack Overflow or respective owner