Skip to content

Instantly share code, notes, and snippets.

View mrfarhadir's full-sized avatar
🎯
Focusing

Farhad Mehryari mrfarhadir

🎯
Focusing
View GitHub Profile
@babakhani
babakhani / gist:9307097
Created March 2, 2014 14:13
Convert English digit to Persian digit
/*
Convert English Numbers to Persian in a web page
Behnam Emamian(www.BehnamEmamian.com)
*/
String.prototype.toPersianDigit = function (a) {
return this.replace(/\d+/g, function (digit) {
var enDigitArr = [], peDigitArr = [];
for (var i = 0; i < digit.length; i++) {
enDigitArr.push(digit.charCodeAt(i));