so i have a df with a column that has various string values
col1
Hi
-Hi
+hi
=Hi
I would like to remove all of the non alpha numeric values in this column to this:
col1
Hi
Hi
hi
Hi
I know i can just do a str replace with those non alpha characters, but to future proof the script, I would like to use something like isalpha(). there might be different non alpha characters in the future.