a
(string): The string to search within. This is the string that may contain the substring you are looking for.b
(string): The substring to search for. This is the string that you want to check if it is included in the a
input.result
(boolean): Returns true
if string a
includes string b
, otherwise returns false
.a
input. This is the string you want to search within.b
input. This is the substring you want to check for inclusion in a
.result
output will emit true
if b
is found within a
, otherwise it will emit false
.a
input.b
input.result
output to a Filter node to only pass through messages where result
is true
.b
will always return true
since technically an empty string is included in every string. Check your logic if you get unexpected true
results.