Answers for "using re how can we remove digits from a string"

1

how to remove digits in string in python?

>>> s = '12abcd405'
>>> result = ''.join([i for i in s if not i.isdigit()])
>>> result
'abcd'
Posted by: Guest on March-26-2021
-1

python regex remove digits from string

# credit to the Stack Overflow user in the source link
# add a space before \d+ to exclude numbers close to letters, as b3 for example

s = "This must not be deleted, but the number at the end yes 134411"
s = re.sub("\d+", "", s)
Posted by: Guest on August-27-2021

Code answers related to "using re how can we remove digits from a string"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language