Answers for "remove unwanted characters from string python"

22

python remove last characters from string

st =  "abcdefghij"
st = st[:-1]  // Returns string with last character removed
Posted by: Guest on April-11-2020
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
1

drop all characters after a character in python

sep = '...'
stripped = text.split(sep, 1)[0]
Posted by: Guest on February-23-2021

Code answers related to "remove unwanted characters from string python"

Python Answers by Framework

Browse Popular Code Answers by Language