Skip to content

Instantly share code, notes, and snippets.

View hbehkamal's full-sized avatar
🎯
Focusing

Hosein BehKamal hbehkamal

🎯
Focusing
  • Linquip.com
  • Middle East
View GitHub Profile

Use this simple function to convert your string

var
persianNumbers = [/۰/g, /۱/g, /۲/g, /۳/g, /۴/g, /۵/g, /۶/g, /۷/g, /۸/g, /۹/g],
arabicNumbers  = [/٠/g, /١/g, /٢/g, /٣/g, /٤/g, /٥/g, /٦/g, /٧/g, /٨/g, /٩/g],
fixNumbers = function (str)
{
  if(typeof str === 'string')
  {
 for(var i=0; i<10; i++)