美文网首页
python获取所有中文

python获取所有中文

作者: ifqu | 来源:发表于2018-04-11 10:19 被阅读0次

````

import re

title='中文 English'

chinese=u"([\u4e00-\u9fff]+)"

pattern=re.compile(chinese)

result=pattern.findall(title)

print(result)

````

使用编码的形式正则匹配中文编码形式的字符串,就可以获取所有中文,

相关文章

网友评论

      本文标题:python获取所有中文

      本文链接:https://www.haomeiwen.com/subject/aicnhftx.html