Answers for "remove alphabet from string python"

0

remove alphabetic characters python

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

python remove all except numbers

>>> import re
>>> re.sub('D', '', 'aas30dsa20')
'3020'
Posted by: Guest on April-29-2020

Code answers related to "remove alphabet from string python"

Python Answers by Framework

Browse Popular Code Answers by Language