PDA

View Full Version : convert number to words


nari422
04-03-2009, 10:09 PM
hi

how to convert number in rs to words in english

Cibes
04-04-2009, 05:54 AM
Hi nari,
i doubt there is a built-in function for this but it shouldn't be too hard to code one. Do you need this for any numbers?
For a limited amount you could just use a switch

var words;
var num = 16;
switch(num)
{
case 0:
words = "zero";
break;
case 1:
words = "one";
break;
[...]
}

Not too elegant but if you have a bigger range you could split the number and combine the strings for the decimal places, ...