Skip to content

Instantly share code, notes, and snippets.

@gjergjsheldija
Last active September 22, 2022 09:20
Show Gist options
  • Save gjergjsheldija/9111096099c48915f958 to your computer and use it in GitHub Desktop.
Save gjergjsheldija/9111096099c48915f958 to your computer and use it in GitHub Desktop.
regular expression to test albanian mobile phone number
var re = /^(((067|068|069)\d{7})){1}$/;
var str = '0671111111';
var m;
while ((m = re.exec(str)) != null) {
if (m.index === re.lastIndex) {
re.lastIndex++;
}
// View your result using the m-variable.
// eg m[0] etc.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment