Is there an equivalent of PHP\'s preg_match_all in Javascript? If not, what would be the best way to get all matches of a regular expression into an array? I\'m willing to use a
You can use match with the global modifier:
match
>>> '1 2 3 4'.match(/\d/g); ["1", "2", "3", "4"]