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 StringCompare node compares two text strings using different comparison methods. It can check if one string starts with another, ends with another, or if both strings are exactly equal. The comparison can be performed with or without considering letter case differences.

Inputs

ParameterData TypeRequiredRangeDescription
string_aSTRINGYes-The first string to compare
string_bSTRINGYes-The second string to compare against
modeCOMBOYes”Starts With"
"Ends With"
"Equal”
The comparison method to use
case_sensitiveBOOLEANNo-Whether to consider letter case during comparison (default: true)

Outputs

Output NameData TypeDescription
outputBOOLEANReturns true if the comparison condition is met, false otherwise