how to remove thigns from a string that are not numbers and letter python code example
Example: python remove all except numbers
>>> import re
>>> re.sub('\D', '', 'aas30dsa20')
'3020'
>>> import re
>>> re.sub('\D', '', 'aas30dsa20')
'3020'