Answers for "how to remove all alphabetical characters from a string in python"

1

python string exclude non alphabetical characters

import re

regex = re.compile('[^a-zA-Z]')
#First parameter is the replacement, second parameter is your input string
regex.sub('', 'ab3d*E')
#Out: 'abdE'
Posted by: Guest on February-28-2021
0

remove alphabetic characters python

numeric_answer = filter(str.isdigit, original_string)
numeric_answer = "".join(numeric_answer)
Posted by: Guest on October-31-2020

Code answers related to "how to remove all alphabetical characters from a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language