Regex Contains

Checks whether the string contains a match for the given regular expression pattern. Optionally restricts the match to only the start and/or end of the string.

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
At Start

Only match if the pattern appears at the start of the string.

Default: false

bool
At End

Only match if the pattern appears at the end of the string.

Default: false

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

bool