Skip to content

Instantly share code, notes, and snippets.

@wilyJ80
Created September 18, 2024 19:10
Show Gist options
  • Save wilyJ80/69ea5487feee12bfcd74ab0574f105fb to your computer and use it in GitHub Desktop.
Save wilyJ80/69ea5487feee12bfcd74ab0574f105fb to your computer and use it in GitHub Desktop.
js multiline regex with comments?
const pattern = new RegExp([
'\\d{3}', // Area code
'\\s*', // Optional whitespace
'-?', // Optional dash
'\\d{4}' // Main number
].join(''), 'g');
const match = '123 4567'.match(pattern);
console.log(match[0]); // "123 4567"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment