Answers for "replace every character that is not a basic English letter or punctuation symbol regex python"

7

remove special characters from string python

>>> string = "Special $#! characters   spaces 888323"
>>> ''.join(e for e in string if e.isalnum())
'Specialcharactersspaces888323'
Posted by: Guest on May-20-2020
3

clean punctuation from string python

s.translate(str.maketrans('', '', string.punctuation))
Posted by: Guest on May-11-2020

Code answers related to "replace every character that is not a basic English letter or punctuation symbol regex python"

Python Answers by Framework

Browse Popular Code Answers by Language