I have a dataset with ~300k rows that has a "Job Description" field which contains free form text entries describing construction projects. I need to parse the whole database to find observations that contain references to Ceiling, Drywall, Insulation, Hardware, Flooring, and Concrete. I need to use wildcards to allow for misspellings. I've figured out how to make it do what I need it to do for ONE keyword, but I don't know enough about RegEx to know how to make it use a logical OR to look for more than one keyword at a time per cell.
Here's what I've got. Each one of these lines is using the formula tool and creating a new output column:
Contains(('ceiling'), [Text])
iif(REGEX_Match([Text], '.*ceil.*'),'Ceiling'," ")
REGEX_CountMatches([Text],'Ceiling')
How can I modify this to search for more than one term at a time? Thanks in advance!