regexp.splitRegexp() function

The regexp.splitRegexp() function splits a string into substrings separated by regular expression matches and returns an array of i substrings between matches.

*Output data type: Array of Strings*

  1. import "regexp"
  2. regexp.splitRegexp(r: /a*/, v: "abaabaccadaaae", i: 5)
  3. // Returns ["", "b", "b", "c", "cadaaae"]

Parameters

r

The regular expression used to search v.

*Data type: Regexp*

v

The string value to search.

*Data type: String*

i

The maximum number of substrings to return. -1 returns all matching substrings.

*Data type: Integer*