📜  python regex 从字符串中删除数字 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:43.078000             🧑  作者: Mango

代码示例1
# 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)