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)
努力考上研究生