string.matchIndexes()
Get the location of the matching String.
Description
the matchIndexes()
method return the location of the matching string
and the part of the source string that matches the given match string.
The match parameter can be a regex.
The original string isn’t changed.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
match |
Yes |
String or regex expression to match against the source string. |
Examples
'foobarbaz'.matchIndexes('bar')
[
[
3,
"bar"
]
]
'foo bar baz'.matchIndexes('[a-z]+')
[
[
0,
"foo"
],
[
4,
"bar"
],
[
8,
"baz"
]
]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!