字符串类
提取中文
text = "hello你好"
p = re.compile(u'[^\u4e00-\u9fa5]') # 中文的编码范围是:\u4e00到\u9fa5
text = "".join(p.split(text))
print(text)
输出: 你好
本文章采用 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议 进行许可。转载请注明来自JX的博客
text = "hello你好"
p = re.compile(u'[^\u4e00-\u9fa5]') # 中文的编码范围是:\u4e00到\u9fa5
text = "".join(p.split(text))
print(text)
输出: 你好
对于本文内容有问题或建议的小伙伴,欢迎在文章底部留言交流讨论。