I want to convert numerals into other language numerals, how can i do this?
I want to be able to support as many languages as possible (google translation supported languages). I've been reading and I believe this can be done from charcode.
Here is some code I copied from some Javascript application, but it only supports 2 languages.
TextTools.arabicNumber = function (str) {
var res = String(str).replace(/([0-9])/g, function (s, n, ofs, all) {
return String.fromCharCode(0x0660 + n * 1);
});
return res;
}
TextTools.farsiNumber = function (str) {
var res = String(str).replace(/([0-9])/g, function (s, n, ofs, all) {
return String.fromCharCode(0x06F0 + n * 1);
});
return res;
}