[Solved] Search for word in String

You actually won’t need the regular expression extension for this.

There’s a built-in expression named StrFind(), which returns -1 if the text isn’t found in the string, so you can just use the “Compare two numbers” condition, with “If (YourexpressionherewithStrFind()) != -1” (doesn’t equal -1), which means that the text was found.

2 Likes