as you saw in the title of this first post, I would like to detect if a text, like “hello world” contains "hello " ( the space is not a mistake ) , like, a function, or something, I don’t know… I just literally heard “thunkable” for the first time.
The idea here is we check
if extracted text = text to find
set label text = ‘found’
else
set label text = ‘not found’
the special sauce here is the extracted text to compare. I extract, from the start, an equivalent number of characters from the main text as the number of characters in the text to find. I use the length of string block to find that length. I compare that substring or extracted text against the term to find and if they are equal, 1 set of logic occurs else, another set of logic occurs.