Checks whether the string contains the given substring. Optionally restricts the match to only the start and/or end of the string.
Interface
Inputs
| Parameter | Details | Possible 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: | bool |
| At End | Only match if the substring appears at the end of the string. Default: | bool |
Outputs
| Product | Details | Possible Types |
|---|---|---|
| Result | The value produced by the node operation. Primary Output | bool |