Here is my problem.
I know how to create a boolean column based on RegEx, like this:
df['New Column'] = df.columnA.str.match(regex)
In this example, 'New Column' will be contain True or False values.
But how do I do if I want to use a condition to say "If my RegEx returns true, push "this" value, and if it returns False, then push "that" value.
Thank you for your help :)