python字串替換示例

2022-09-28 03:18:10 字數 705 閱讀 9772

php5.2公升級到5.3後,原& new的寫法已經被放棄了,可以直接new了,面對上百個php檔案,手動修改簡直是想要命,所以寫了個指令碼,分分鐘搞定。

複製** **如下:

#-*- codin -*-

#!/usr/bin/python  

import os

#定義程式根目錄

rootpath='d:\\wamp\\www\\erp\\app'

def m_replace(path):

for item in os.listdir(path):

nowpath=os.path.程式設計客棧join(path,item)

if os.path.isdir(nowpath):

m_replace(nowpath)

else:

if nowpath.find('.php')>0:

f=open(nowpath,'r+')

&程式設計客棧nbsp;  content=f.read().replace('& new ',qywquiqdq'new '程式設計客棧)

open(nowpath,'w').write(str(content))

f.close()

if __name__=="__main__":

m_replace(rootpath)

本文標題: python字串替換示例

本文位址:

python字串替換

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

python 字串替換 正則

因為看電影字幕有些不必要的想刪除,此段 用於刪除 內的內容。python 中 string的replace函式並不能直接使用 正規表示式,所以我們採取compile的方式 其中re為正則的標準庫。此段 包含 1.檔案的讀入輸出 2.正規表示式的使用 import re out open g and....

python替換特定字串

python 字串替換是python操作字串的時候經常會碰到的問題,這裡簡單介紹下字串替換方法。python 字串替換可以用2種方法實現 1是用字串本身的方法。2用正則來替換字串 下面用個例子來實驗下 a hello word 我把a字串裡的word替換為python 1用字串本身的replace方...