I have a text column for comments (see example below), and I need to know (True/False) whether it contains the misrun or misfire. Misrun and misfire can be spelled or annotated with special characters. I currently have a contains formula trying to find all the different spellings, but I know this is not a good way to do it. Note, misrun and misfire can occur anywhere in the string.
I know I can use the Regex tool set to Match to give me the true/false, but I don't know enough regex to write it. Help would be greatly appreciated. Thank you.
Solved! Go to Solution.
I think this is the kind of situation you could use some Fuzzy Match + data prep to get what you want, because writing a perfect REGEX could rbe a little trouble, since there might be a lot of variations.
Cheers,
Couldn't you just simplify this to either contains "run" or "fire" then you don't need all those combinations.
Couldn't you just simplify this to either contains "run" or "fire"? then you don't need all those combinations.
Unfortunately not. Something I don't want to flag is "All shots fired". Good thought though.
I will give Fuzzy Match a try. I've not had good luck with it in the past.
I just hit run! One sec.... 🙂
Mark,
The regex expression did not return any matched. ??? Is there more info I can provide?
Thanks,
Julie