Is there a function that can look for a string within a larger string variable, and generate a 1 if it finds a match and 0 if it does not?
Thanks
Paul
Thanks
Paul
search string function
gen found = strpos("Is there something here", "there") > 0
gen byte found = strmatch("Is there something here", "*there*")
Comment