Regex Find All

Finds all non-overlapping matches of a regular expression pattern in the string, returning a list of the matched substrings.

Interface

Inputs

ParameterDetailsPossible Types
String

The string to search within.

Primary Input

String
Pattern

The regular expression pattern to search for.

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>