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
Pattern

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

Default: ""

String
Case Insensitive

Match letters regardless of case.

Default: false

bool
Multiline

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

Default: false

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

Vec<String>