python如何刪除字符串中指定字符-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關(guān)python如何刪除字符串中指定字符的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

創(chuàng)新互聯(lián)主要從事網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)惠安,10多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108

python是什么意思

Python是一種跨平臺的、具有解釋性、編譯性、互動性和面向?qū)ο蟮哪_本語言,其最初的設(shè)計是用于編寫自動化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發(fā)獨(dú)立的項目和大型項目。

import re 
temp = "司法局讓我和戶 1 5. 8 0. ?。??? 客戶維護(hù)戶外" 
temp = temp.decode("utf8") 
string = re.sub("[\s+\.\!\/_,$%^*(+\"\']+|[+——!,。?、~@#¥%……&*()]+".decode("utf8"), "".decode("utf8"),temp) 
print string

或者是這樣的

'''引入string模塊'''
import string
'''使用標(biāo)點(diǎn)符號常量'''
string.punctuation
text = "*/@》--【】--12()測試*()"

'''去除字符串中所有的字符,可增加自定義字符'''
def strclear(text,newsign=''):
  import string # 引入string模塊
  signtext = string.punctuation + newsign # 引入英文符號常量,可附加自定義字符,默認(rèn)為空
  signrepl = '@'*len(signtext) # 引入符號列表長度的替換字符
  signtable = str.maketrans(signtext,signrepl) # 生成替換字符表
  return text.translate(signtable).replace('@','') # 最后將替換字符替換為空即可

strclear(text,'》【】')

我一開始用的后面的這個,著實是有點(diǎn)暴力,于是找了查了一下原文檔,發(fā)現(xiàn)python3中完全有更好的方法去實現(xiàn)這樣的功能(似乎是新更新的?不太清楚,我的是python最新版本3.6.6)

和上面的方法一樣是利用的是str的translate()和maketrans()

translate()自然不用說這里的重點(diǎn)是maketrans(),先放上官方的文檔

static str.maketrans(x[, y[, z]])
This static method returns a translation table usable for str.translate().

If there is only one argument, 
it must be a dictionary mapping Unicode ordinals (integers) or characters (strings of length 1) to Unicode ordinals, 
strings (of arbitrary lengths) or None. Character keys will then be converted to ordinals.

If there are two arguments, 
they must be strings of equal length, 
and in the resulting dictionary, 
each character in x will be mapped to the character at the same position in y. 
If there is a third argument, it must be a string, whose characters will be mapped to None in the result.

可以看出maketrans是可以放三個參數(shù)的(以前一直以為只有兩個....)

前兩個參數(shù)是需要一一對應(yīng)進(jìn)行替換,需要字符串長度相同

第三個參數(shù)是直接替換為None

這里就直接上代碼了

import string

i = 'Hello, how are you!'

i.translate(str.maketrans('', '', string.punctuation))
>>>'Hello how are you'

 i = 'hello world i am li'
 i.translate(str.maketrans('','','l'))

>>>'heo word i am i'

這里的string.punctuation 是python內(nèi)置的標(biāo)點(diǎn)符號的合集

感謝各位的閱讀!關(guān)于“python如何刪除字符串中指定字符”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

分享題目:python如何刪除字符串中指定字符-創(chuàng)新互聯(lián)
URL網(wǎng)址:http://muchs.cn/article46/poihg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動態(tài)網(wǎng)站、全網(wǎng)營銷推廣自適應(yīng)網(wǎng)站、網(wǎng)站導(dǎo)航做網(wǎng)站、服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設(shè)