How do we remove all non-numeric characters from a string in Python?
>>> import re >>> re.sub("[^0-9]", "", "sdkjh987978asd098as0980a98sd") '987978098098098'
1.4m articles
1.4m replys
5 comments
57.0k users