Answers for "strip everything but digits from a string in python"

1

python remove all except numbers

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

Code answers related to "strip everything but digits from a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language