python替換特定字串

2021-07-28 18:42:06 字數 447 閱讀 1478

python 字串替換是python操作字串的時候經常會碰到的問題,這裡簡單介紹下字串替換方法。

python 字串替換可以用2種方法實現:

1是用字串本身的方法。

2用正則來替換字串

下面用個例子來實驗下:

a = 『hello word』

我把a字串裡的word替換為python

1用字串本身的replace方法

a.replace(『word』,』python』)

輸出的結果是hello python

2用正規表示式來完成替換:

import re

strinfo = re.compile(『word』)

b = strinfo.sub(『python』,a)

print b

輸出的結果也是hello python

分組正則替換字串中特定字元

原字串1 getcell order.getordername commonfont 源字串2 getcell order.getordername commonboldfont 目標字串 getcell order.getordername 源 getcell 目標 getcell 1 之前使用正...

分組正則替換字串中特定字元

原字串1 getcell order.getordername commonfont 源字串2 getcell order.getordername commonboldfont 目標字串 getcell order.getordername 源 getcell 目標 getcell 1 之前使用正...

python字串替換

print replace實現多個子串替換 strr abaabbaccaaeeaa print 原字串 n format strr e strr.replace aa str 0 print 替換後的字串 n format e print split實現字串替換 strr abaabbaccaae...