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
| Parameter | Details | Possible 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: | bool |
| Multiline | Make Default: | bool |
| At Start | Only match if the pattern appears at the start of the string. Default: | bool |
| At End | Only match if the pattern 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 |