Check out v4 of the Fauna CLI

v4 of the Fauna CLI is now in beta.

The new version introduces enhancements to the developer experience, including an improved authentication workflow. To get started, check out the CLI v4 quick start.

string.matchIndexes()

Get the location of the matching String.

Signature

matchIndexes(match: String) => Array

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

String

Yes

String or regex expression to match against the source string. Supports Java regex.

Return value

Type Description

Array

Array of the index of the matching string and match, itself.

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!