Skip to main content
This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! Edit on GitHub
The StringContains node checks if a given string contains a specified substring. It can perform this check with either case-sensitive or case-insensitive matching, returning a boolean result indicating whether the substring was found within the main string.

Inputs

ParameterData TypeRequiredRangeDescription
stringSTRINGYes-The main text string to search within
substringSTRINGYes-The text to search for within the main string
case_sensitiveBOOLEANNo-Determines whether the search should be case-sensitive (default: true)

Outputs

Output NameData TypeDescription
containsBOOLEANReturns true if the substring is found in the string, false otherwise