String Contains

Checks whether the string contains the given substring. 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
Substring

The substring to search for.

Default: ""

String
At Start

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

Default: false

bool
At End

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

Default: false

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

bool