Answers for "remove the left x digits from string python"

-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

how to remove digits in string in python?

no_digits = []
# Iterate through the string, adding non-numbers to the no_digits list
for i in s:
    if not i.isdigit():
        no_digits.append(i)

# Now join all elements of the list with '', 
# which puts all of the characters together.
result = ''.join(no_digits)
Posted by: Guest on March-26-2021

Code answers related to "remove the left x digits from string python"

Python Answers by Framework

Browse Popular Code Answers by Language