“Python Expresión regular Eliminar números” 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

Python Expresión regular Eliminar números

value = '12 QZR 44A'
def remove_numbers(name):
    return re.sub(r'\w*\d\w*', '', name).strip()
value.apply(remove_numbers) 
Troubled Tiger

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 “Python Expresión regular Eliminar números”

Preguntas similares a “Python Expresión regular Eliminar números”

Más respuestas relacionadas con “Python Expresión regular Eliminar números” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código