I have a data frame and I want to flag all the elements inside this which contains character or character plus integer value.
After a little bit of search, I could make this regex but its not giving the expected output:
([A-Za-z]+[0-9]|[0-9]+[A-Za-z])[A-Za-z0-9]*
Expected output
alpha - True
Alpha1 - True
A35. 1ha-True
Alp1Ha - True
A pha6- True
12345 - False
0 - False
-23442 - False