Answers for "regular expression remove numbers from string pythin"

-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
0

regular expression remove numbers from string pythin

#remove any number from a string
string = 'abc123'
remove_num = ''.join(i for i in string if not i.isdigit()
Posted by: Guest on March-09-2022

Code answers related to "regular expression remove numbers from string pythin"

Code answers related to "Javascript"

Browse Popular Code Answers by Language