````
import re
title='中文 English'
chinese=u"([\u4e00-\u9fff]+)"
pattern=re.compile(chinese)
result=pattern.findall(title)
print(result)
````
使用编码的形式正则匹配中文编码形式的字符串,就可以获取所有中文,
````
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
网友评论