“Expresión regular Eliminar números de String Pythin” Código de respuesta

Python Regex Eliminar los dígitos de la cadena

# 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)
wolf-like_hunter

Expresión regular Eliminar números de String Pythin

#remove any number from a string
string = 'abc123'
remove_num = ''.join(i for i in string if not i.isdigit()
NotACoder

Respuestas similares a “Expresión regular Eliminar números de String Pythin”

Preguntas similares a “Expresión regular Eliminar números de String Pythin”

Más respuestas relacionadas con “Expresión regular Eliminar números de String Pythin” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código