Match
type | returns |
Method | array<string> |
name | type | description |
regex | regex | Regex to match string |
Returns an array of matched strings. When and if the
g
flag is provided, .match()
returns all the matches in the string. Regardless of flags, .match()
will always return a string array."Hello! Hi!".match(/H.+?!/) == ["Hello!"]
"Hello! Hi!".match(/H.+?!/g) == ["Hello!", "Hi!"]
Last modified 3yr ago