Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/36332e34b7178c381fbd7ae1d17502bc to your computer and use it in GitHub Desktop.
Save szaranger/36332e34b7178c381fbd7ae1d17502bc to your computer and use it in GitHub Desktop.
const fruits ="Fruits:apples, oranges, pears";
const regex = /(apples)/gd;
const matches = [...fruits.matchAll(regex)];
console.log(matches[0]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment