這篇文章主要介紹python去除非中文的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
為湟中等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及湟中網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)、湟中網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!
python去除非中文的方法:
import re def find_chinese(file): pattern = re.compile(r'[^\u4e00-\u9fa5]') chinese = re.sub(pattern, '', file) print(chinese) def find_unchinese(file): pattern = re.compile(r'[\u4e00-\u9fa5]') unchinese = re.sub(pattern,"",file) print(unchinese) if __name__ == "__main__": line = "2019年1月3日 - python去除空格和換行符的方法 一、去除空格 strip().strip() # ...用replace('\',''),后邊的串替換掉前邊的posted @ 2016-07-18 08:53 ..." print("原文:") print(line) print("保留中文:") find_chinese(line) print("保留非中文:") find_unchinese(line)
運(yùn)行結(jié)果:
原文: 2019年1月3日 - python去除空格和換行符的方法 一、去除空格 strip().strip() # ...用replace('',''),后邊的串替換掉前邊的posted @ 2016-07-18 08:53 ... 保留中文: 年月日去除空格和換行符的方法一去除空格用后邊的串替換掉前邊的 保留非中文: 201913 - python 、 strip().strip() # ...replace('',''),posted @ 2016-07-18 08:53 ...
以上是python去除非中文的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!