Skip to content

Instantly share code, notes, and snippets.

View riandyrn's full-sized avatar

Riandy Rahman Nugraha riandyrn

View GitHub Profile
@riandyrn
riandyrn / gist:547adcb6e428006e4c9b7f97c8cda7f1
Created September 27, 2016 23:29 — forked from homaily/gist:8672499
Regex to validate saudi mobile numbers

السلام عليكم ، هذا كود ريجيكس بسيط للتحقق من صحة أرقام الجوالات السعودية ، يقوم الريجيكس بالتحقق من مفتاح الدولة ، مفتاح شركة الإتصالات لضمان صحة النص المدخل .

Hello, this is a simple regex to validate saudi mobile numbers, the code will validate country code, telecome company code and make sure the tested sting is correct .

/^(009665|9665|\+9665|05|5)(5|0|3|6|4|9|1|8|7)([0-9]{7})$/

Regex Breakdown - شرح الكود