For instance, I have reviews column and I want to extract words and create dummy variables based on them.
I use that but can't use regular expressions here:
df = df['reviews'].str.contains('good').astype(int)
How can I use regular expressions here for extracting good, goid, goof etc.