Answers for "removing punctuation from string python"

5

remove punctuation from string python

#with re
import re
s = "string. With. Punctuation?"
s = re.sub(r'[^ws]','',s)
#without re
s = "string. With. Punctuation?"
s.translate(str.maketrans('', '', string.punctuation))
Posted by: Guest on May-26-2020
1

can you edit string.punctuation

>>> from string import punctuation
>>> from re import sub
>>> 
>>> string = "Fred-Daniels!"
>>> translator = str.maketrans('','', sub('-', '', punctuation))
>>> string
'\Fred-Daniels!'
>>> string = string.translate(translator)
>>> string
'Fred-Daniels'
Posted by: Guest on November-27-2020
1

python3 strip punctuation from string

import string
#make translator object
translator=str.maketrans('','',string.punctuation)
string_name=string_name.translate(translator)
Posted by: Guest on May-19-2020
3

clean punctuation from string python

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

Code answers related to "removing punctuation from string python"

Python Answers by Framework

Browse Popular Code Answers by Language