有時(shí)候碰到需要批量替換文件中的字符串,用比較簡短的python代碼操作一下。
import os
filepath = '...'
lines = open(filepath).readlines()
fp = open(filepath,'w')
for s in lines:
fp.write( s.replace('orginString', 'targetString'))
fp.close()
有時(shí)候碰到需要批量替換文件中的字符串,用比較簡短的python代碼操作一下。
import os
filepath = '...'
lines = open(filepath).readlines()
fp = open(filepath,'w')
for s in lines:
fp.write( s.replace('orginString', 'targetString'))
fp.close()