提取指定字符前或后的数字

1 import re
2 string = "hello!!%[。]16天11板的""
3 number = re.findall(r"\d+",string) #提取所有整数
4 print('所有数字:',number)
1 number = re.findall(r"(?<=\天)\d+",string) #提取指定字符后数字
2 print('指定字符后:',number)
1 number = re.findall(r"(\d+)板",string) #提取指定字符前的数字
2 print('指定字符前:',number)

 

1 #转化为数字
2 number = list(map(int, number)) #先将list内字符型转数值型
3 number = number[0] #再读取list元素
4 print('转化为数字:',number)
#过滤字符串中的英文与符号,保留汉字
ste = re.sub("[A-Za-z0-9\!\%\[\]\,\。]", "", string) #re.sub:正则替换
print('汉字:',ste)

 输出结果

所有数字: [’16’, ’11’]
指定字符后: [’11’]
指定字符前: [’11’]
转化为数字: 11
汉字: 天板的

转载于:https://www.cnblogs.com/sxinfo/p/10992844.html

    原文作者:weixin_30621959
    原文地址: https://blog.csdn.net/weixin_30621959/article/details/95882377
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞