欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python中利用正则匹配找出所有的中文

程序员文章站 2022-07-14 19:26:40
...
>>> import re
>>> string = '[email protected]¥……¥……努力考上研究生¥¥[email protected]$$#^%'
>>> result = re.findall(u'[\u4e00-\u9fa5]',string)
>>> ans = ''.join(result)
>>> print(ans)
努力考上研究生