I am using Pandas to process a text variable, and I am not sure how to correctly write the following regex expression
- containing the word
ball
OR the wordhello
anywhere in the text - contatining at least a number anywhere in the text
so that
ball red is good 02
is TRUEball ball
is FALSE2003 was a pretty damn hello
is TRUE
Any ideas? Thanks!