Python学习笔记(59)~正则基础:split分割单词
【摘要】 split分割单词
Demo
#!/usr/bin/python3
import re
s = 'This module provides regular expression matching operations similar to those found in Perl'
pat = r'\s+'
r = re.split(pat,s)
print(r)...
split分割单词
Demo
#!/usr/bin/python3
import re
s = 'This module provides regular expression matching operations similar to those found in Perl'
pat = r'\s+'
r = re.split(pat,s)
print(r) # ['This', 'module', 'provides', 'regular', 'expression', 'matching', 'operations', 'similar', 'to', 'those', 'found', 'in', 'Perl']
### 上面这句话也可直接使用str自带的split函数:
#使用空格分隔
print(s.split(' '))
### 但是,对于风格符更加复杂的情况,split无能为力,只能使用正则
s = 'This,,, module ; \t provides|| regular ;'
words = re.split('[,\s;|]+',s) #这样分隔出来,最后会有一个空字符串, 因为spilt只是相当于以x为切割点,在这里最后最后一串字符串被当作了切割符,所以之后会添加一个空字符串
wordx = [i for i in words ]#最后有空字符串
wordy = [i for i in words if len(i)>0]#最后无字符串
print(wordx)
print(wordy)
运行结果
知识点
- re.split()
文章来源: haihong.blog.csdn.net,作者:海轰Pro,版权归原作者所有,如需转载,请联系作者。
原文链接:haihong.blog.csdn.net/article/details/107966312
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)