I want to go through a column of a df and look to extract a substring out of the values in the column using a vector with several different possible matches. Is there a better way of getting this done with str_extract
than:
str_extract(string, pattern1 | pattern2 | pattern3...)