码迷,mamicode.com
首页 > 其他好文 > 详细

字符串提取操作

时间:2019-01-11 23:24:40      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:print   字符   port   class   过滤   result   bsp   pre   world   

1, 过滤字符串中的英文与符号,保留汉字

import re
str = "hello,world!!%[545]你好234世界。。。"
str = re.sub("[A-Za-z0-9\!\%\[\]\,\。]", "", str)
print(str)

输出结果:你好世界 

2, 从字符串中提取字母

result = ‘‘.join(re.findall(r‘[A-Za-z]‘, str)) 

字符串提取操作

标签:print   字符   port   class   过滤   result   bsp   pre   world   

原文地址:https://www.cnblogs.com/arraon/p/10257581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!