溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python去除非中文的方法

發(fā)布時(shí)間:2020-07-09 15:52:12 來源:億速云 閱讀:813 作者:清晨 欄目:編程語言

這篇文章主要介紹python去除非中文的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

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)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI