Answers for "how to remove special characters from a list of string using regular expression python"

1

python remove special characters from list

import re
my_list= ["on@3", "two#", "thre%e"]
print [re.sub('[^a-zA-Z0-9]+', '', _) for _ in my_list]
Posted by: Guest on November-06-2020

Code answers related to "how to remove special characters from a list of string using regular expression python"

Python Answers by Framework

Browse Popular Code Answers by Language