Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nitayneeman/c8f6d484b6a8aca56ed5f22c1dc1f72c to your computer and use it in GitHub Desktop.
Save nitayneeman/c8f6d484b6a8aca56ed5f22c1dc1f72c to your computer and use it in GitHub Desktop.
const regex = /t(e)(st(\d?))/g;
const result = 'test1test2'.matchAll(regex);
const [matchingValue, matchingValue2] = result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment