13

我需要通过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 行。

非常感谢您的帮助。

更新

使用@JF Sebastian 发布的代码,我现在收到以下错误:

configobj.ParseError: Parse error in value at line 611.

该文件的第 611 行是:

log4j.appender.dailyRollingFile.DatePattern='.'yyyy-MM-d

所以问题出在 ' 字符上。

如果我注释掉该行,则该脚本可以与@JF Sebastian 发布的代码一起正常工作。

4

2 回答 2

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
于 2011-03-14T23:06:10.543 回答
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)

要替换配置文件中的变量名称(使用configobjmodule):

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')你的意思是分配yENABLEPRINTER变量,那么:

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
于 2011-03-14T13:46:53.870 回答