How to only select the very next string after target string but the next string after the target string, regardless of punctation?
I have a df that looks like this: id query 1 select * from table1 where col1 = 1 2 select a.columns FROM table2 a I want to only select the string (table if you know sql) after the string FROM into a new column. FROM can be spelled with different capitalizations (ie From, from,FROM,etc).… Read More How to only select the very next string after target string but the next string after the target string, regardless of punctation?