python中使用正则
Posted JaydenLD@Clara
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中使用正则相关的知识,希望对你有一定的参考价值。
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)
以上是关于python中使用正则的主要内容,如果未能解决你的问题,请参考以下文章