Retrieves all the matches of a regex in a string, via a generator.
This works exactly like string-match, but uses a generator.
npm install string-matches-generator
import stringMatches from 'string-matches–generator';
// Let's get all the matches of a regex in a string, via a generator
const str = 'A tidy tiger tied a tighter tie to tidy her tiny tail';
const regex = /tidy/g; // Don't forget the `g` flag, or it won't work
const matches = [...stringMatches ( str, regex )];
console.log ( matches.length ); // => 2
MIT © Fabio Spampinato