mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
332 B
332 B
date | id | title |
---|---|---|
2020-11-16 | 32ffc92c-6a1d-4bf1-8f4c-b8d53ced6203 | MatchAll Expression |
Description
Find all instances of a regular expression match, including the index.
Syntax
const matches = "Here are some numbers: 5 12 88".matchAll(/\d+/g);
for (const match of matches) {
console.log(match);
}