Regex Split

Splits a string into a list of substrings pulled from between separator characters as matched by a regular expression.

For example, splitting "Three, two, one... LIFTOFF" with pattern \W+ (non-word characters) produces ["Three", "two", "one", "LIFTOFF"].

Interface

Inputs

ParameterDetailsPossible Types
String

The string to split into substrings.

Primary Input

String[]
String
Pattern

The regular expression pattern to split on. Matches are consumed and not included in the output.

Default: ""

String[]
String
Case Insensitive

Match letters regardless of case.

Default: false

bool[]
bool
Multiline

Make ^ and $ match the start and end of each line, not just the whole string.

Default: false

bool[]
bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

String[]