python中使用正则

风流意气都作罢 提交于 2020-02-25 19:46:09
import re

text = "123123aoasasdfaisdfs阿瑟东阿瑟东佛阿迪斯发到付撒大沙发"
# 查找所有的数字
nums = re.findall(r'\d+', text)
print(nums)
# 查找所有的单词
words = re.findall(r'[a-zA-Z]+', text)
print(words)
# 查找所有的汉字
chinese_word = re.findall(r'[\u4e00-\u9fa5]+', text)
# chinese_word = re.findall(r'[\u4e00-\u9fa5]{4, 10}', text)# chinese_word = re.findall(r'[\u4e00-\u9fa5]{10}', text)
print(chinese_word)

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!