Skip to content

Instantly share code, notes, and snippets.

@DavidMellul
Created May 30, 2018 20:51
Show Gist options
  • Save DavidMellul/cd06f3c364d8d0c7c20b85b460c91235 to your computer and use it in GitHub Desktop.
Save DavidMellul/cd06f3c364d8d0c7c20b85b460c91235 to your computer and use it in GitHub Desktop.
const phone1 = '+33 6 68 56 23 05';
const phone2 = '06 68 56 23 05';
const regex = /^((\+33 \d)|(0\d))( \d{2}){4}$/;
if( regex.test(phone1) && regex.test(phone2) )
console.log('Call me maybe');
// Prints : Call me maybe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment