我需要通过python编辑配置文件,我尝试在stackoverflow和google上搜索,但它们不能覆盖我的情况,因为我需要替换文件中的行并在搜索中执行匹配。
此外,我发现的内容涵盖如何为一行做,我将在文件中执行至少8行替换,我想知道是否有更干净,更优雅的方式这样做比放10完全替换(foo,bar)行。
我需要“匹配”像“ENABLEPRINTER”,“PRINTERLIST”,“PRNT1.PORT”这样的行。 我想匹配这些文本并忽略后面的内容(例如:“= PRNT1,PRNT2”)。
所以我会做类似
的事情replace('ENABLEPRINTER', 'y')
replace('PRINTERLIST', 'PRNT3)
该文件如下所示:
ENABLEPRINTER=n
PRINTERLIST=PRNT1, PRNT2
PRNT1.PORT=9600
PRNT1.BITS=8
另请注意,这些文件大约有100行,我需要编辑其中的10行。
非常感谢你的帮助。
更新:
使用@ J.F发布的代码。塞巴斯蒂安,我现在收到以下错误:
configobj.ParseError: Parse error in value at line 611.
该文件的第611行是:
log4j.appender.dailyRollingFile.DatePattern='.'yyyy-MM-d
所以问题在于'角色。
如果我注释掉该行,那么脚本与@ J.F发布的代码一起正常工作。塞巴斯蒂安。
答案 0 :(得分:7)
import re
pat = re.compile('ENABLEPRINTER|PRINTERLIST|PRNT1.PORT')
def jojo(mat,dic = {'ENABLEPRINTER':'y',
'PRINTERLIST':'PRNT3',
'PRNT1.PORT':'734'} ):
return dic[mat.group()]
with open('configfile','rb+') as f:
content = f.read()
f.seek(0,0)
f.write(pat.sub(jojo,content))
f.truncate()
在:
ENABLEPRINTER=n
PRINTERLIST=PRNT1, PRNT2
PRNT1.PORT=9600
PRNT1.BITS=8
后:
y=n
PRNT3==PRNT1, PRNT2
734=9600
PRNT1.BITS=8
太明确无法确定。说出什么是错误或弱点。
正则表达式的优点是它们可以很容易地调整到特定情况。
编辑:
我刚看到:
“我想要做的是为变量”
分配一个新值你可以提前通知!
请你在之前/之后给出一个文件例子。
编辑2
以下是更改文件中某些变量值的代码:
import re
from os import fsync
def updating(filename,dico):
RE = '(('+'|'.join(dico.keys())+')\s*=)[^\r\n]*?(\r?\n|\r)'
pat = re.compile(RE)
def jojo(mat,dic = dico ):
return dic[mat.group(2)].join(mat.group(1,3))
with open(filename,'rb') as f:
content = f.read()
with open(filename,'wb') as f:
f.write(pat.sub(jojo,content))
#-----------------------------------------------------------
vars = ['ENABLEPRINTER','PRINTERLIST','PRNT1.PORT']
new_values = ['y','PRNT3','8310']
what_to_change = dict(zip(vars,new_values))
updating('configfile_1.txt',what_to_change)
在:
ENABLEPRINTER=n
PRINTERLIST=PRNT1, PRNT2
PRNT1.PORT=9600
PRNT1.BITS=8
后:
ENABLEPRINTER=y
PRINTERLIST=PRNT3
PRNT1.PORT=8310
PRNT1.BITS=8
答案 1 :(得分:4)
如果文件采用java.util.Properties
格式,那么您可以使用pyjavaproperties
:
from pyjavaproperties import Properties
p = Properties()
p.load(open('input.properties'))
for name, value in [('ENABLEPRINTER', 'y'), ('PRINTERLIST', 'PRNT3')]:
p[name] = value
p.store(open('output.properties', 'w'))
它不是很强大,但对它的各种修复可能会使接下来的人受益。
要在短字符串中多次替换:
for old, new in [('ENABLEPRINTER', 'y'), ('PRINTERLIST', 'PRNT3')]:
some_string = some_string.replace(old, new)
要替换配置文件中的变量名称(使用configobj
module):
import configobj
conf = configobj.ConfigObj('test.conf')
for old, new in [('ENABLEPRINTER', 'y'), ('PRINTERLIST', 'PRNT3')]:
conf[new] = conf[old]
del conf[old]
conf.write()
如果按replace('ENABLEPRINTER', 'y')
,则表示将y
分配给ENABLEPRINTER
变量,然后:
import configobj
ENCODING='utf-8'
conf = configobj.ConfigObj('test.conf', raise_errors=True,
file_error=True, # don't create file if it doesn't exist
encoding=ENCODING, # used to read/write file
default_encoding=ENCODING) # str -> unicode internally (useful on Python2.x)
conf.update(dict(ENABLEPRINTER='y', PRINTERLIST='PRNT3'))
conf.write()
似乎configobj
与以下内容不兼容:
name = '.'something
你可以引用它:
name = "'.'something"
或者:
name = '.something'
或者
name = .something
conf.update()
执行类似的操作:
for name, value in [('ENABLEPRINTER', 'y'), ('PRINTERLIST', 'PRNT3')]:
conf[name] = value