0

我有一个包含数千个条目的文本文件,例如:

@INBOOK{Abu-Lughod1991,
  chapter = {Writing against culture},
  pages = {137-162},
  title = {Recapturing anthropology},
  publisher = {School of American Research Press},
  year = {1991},
  editor = {Richard Fox},
  author = {Abu-Lughod, Lila},
  address = {Santa Fe /NM},
  abstract = {Im Zusammenhang mit der Debatte um die writing culture fomuliert AL
        eine feministische Kritik und zeigt, wie von dort doch Anregungen
        für die Reflektion der Schreibweise und Repräsentation gekommen sind.*},
  crossref = {Rabinow1986},
  keywords = {Frauen; Feminismus; Erzählung als EG; Repräsentation; Roman; Schreibtechnik;
        James Clifford; writing culture; Dialog;},
  owner = {xko},
  systematik1 = {Anth\theor\Ethnographie},
  systematik2 = {Anth\theor\Text & Ges},
  timestamp = {1995-12-02}
}

我会将关键字 - 字段中的所有分号替换为逗号。但仅在关键字字段中 - 其他字段应保持不变:

keywords = {Frauen, Feminismus, Erzählung als EG, Repräsentation, Roman, Schreibtechnik, James Clifford, writing culture, Dialog,},

我不是程序员,也许下面的代码片段是一个很好的起点,如果有人能完成它,我将不胜感激。

outfile = open("literatur_comma.txt", "w") 
for line in open("literatur_semicolon.txt", "r"): 
    if line  # starts with "keywords" replace all semicolon with comma
        outfile.write(line) # write in new file
outfile.close() 

非常感谢!

编辑:感谢您的所有答案和代码,太好了!我的想法犯了一个错误,如果我使用我的代码包装器(带有输出文件),那么它会创建一个包含关键字的新文件。如何使用相同的文件并仅将分号替换为关键字行中的逗号?

4

3 回答 3

3

像这样的东西适用于单行。

if line.strip().startswith('keywords'):
    line = line.replace(';',',')
outfile.write(line) 

但是,如果关键字在您的实际文本文件中跨越多行,这将无法完成工作。

于 2012-11-05T17:10:56.570 回答
0
outfile = open("literatur_comma.txt", "w") 
for line in open("literatur_semicolon.txt", "r"): 
    if line.startswith('keywords'):  # starts with "keywords" replace all semicolon with comma
        outfile.write(line.replace(';',',')) # write in new file
outfile.close() 
于 2012-11-05T17:11:45.827 回答
0

使用 pyparsing

注意:这是一种方法,但大脑没有处于解析模式 - 所以这是一个想法而不是正确的答案......它当然需要一些工作,但很可能是正确的方向......

使用pyparsing... 的一个有点混乱的例子(可能会更好,有一些 @INBOOK 和 wotsit 检查和解析,但无论如何......)

from pyparsing import *

keywords = originalTextFor(Keyword('keywords') + '=')
values = delimitedList(Regex('[^;}]+'), ';')
values.setParseAction(lambda L: ', '.join(L))

text你的例子在哪里:

>>> print values.transformString(text)
@INBOOK{Abu-Lughod1991,
  chapter = {Writing against culture},
  pages = {137-162},
  title = {Recapturing anthropology},
  publisher = {School of American Research Press},
  year = {1991},
  editor = {Richard Fox},
  author = {Abu-Lughod, Lila},
  address = {Santa Fe /NM},
  abstract = {Im Zusammenhang mit der Debatte um die writing culture fomuliert AL
        eine feministische Kritik und zeigt, wie von dort doch Anregungen
        für die Reflektion der Schreibweise und Repräsentation gekommen sind.*},
  crossref = {Rabinow1986},
  keywords = {Frauen, Feminismus, Erzählung als EG, Repräsentation, Roman, Schreibtechnik, James Clifford, writing culture, Dialog;},
  owner = {xko},
  systematik1 = {Anth   heor\Ethnographie},
  systematik2 = {Anth   heor\Text & Ges},
  timestamp = {1995-12-02}
于 2012-11-05T17:54:21.473 回答