Is there an easy way to convert a number to Indian words format with lakhs and crores using C#
Posted
by Craig
on Stack Overflow
See other posts from Stack Overflow
or by Craig
Published on 2010-03-23T23:48:42Z
Indexed on
2010/03/23
23:53 UTC
Read the original article
Hit count: 377
As the title suggests I would like to convert a long number to the format with words using C#. The Culture settings don't seem to do this and I am just currently doing this
String.Format(new CultureInfo("en-IN"), "{0:C0}", Price)
But for very long numbers I would prefer the word format. I am not from India and only vaguely family with how the system works.
© Stack Overflow or respective owner