Published
- 1 min read
python strip non numeric in string
The solution for this is noted below
python strip non numeric in string
Solution
>>> import re
>>> re.sub("[^0-9]", "", "sdkjh987978asd098as0980a98sd")
'987978098098098'
Try other methods by searching on the site. That is if this doesn’t work