up vote 31 down vote favorite
17
share [g+] share [fb]

I want to loop over the contents of a text file and do a search and replace on some lines and write the result back to the file. I could first load the whole file in memory and then write it back, but that probably is not the best way to do it.

What is the best way to do this, within the following code?

f = open(file)
for line in f:
    if line.contains('foo'):
        newline = line.replace('foo', 'bar')
        # how to write this newline back to the file
link|improve this question

feedback

7 Answers

up vote 15 down vote accepted

I guess something like this should do it. It basically writes the content to a new file and replaces the old file with the new file:

from tempfile import mkstemp
from shutil import move
from os import remove, close

def replace(file, pattern, subst):
    #Create temp file
    fh, abs_path = mkstemp()
    new_file = open(abs_path,'w')
    old_file = open(file)
    for line in old_file:
        new_file.write(line.replace(pattern, subst))
    #close temp file
    new_file.close()
    close(fh)
    old_file.close()
    #Remove original file
    remove(file)
    #Move new file
    move(abs_path, file)
link|improve this answer
feedback

Use the fileinput module. For example, the following adds line numbers to a file, in-place:

import fileinput

for line in fileinput.input("test.txt", inplace=1):
    print "%d: %s" % (fileinput.filelineno(), line),
link|improve this answer
2  
I know this only has two lines in it, however I don't think the code is very expressive in itself. Because if you think for a sec, if you didn't know the function, there are very few clues in what is going on. Printing the line number and the line is not the same as writing it ... if you get my gist... – chutsu May 29 '10 at 19:12
2  
i agree. how would one use fileinput to write to the file? – jml Jan 24 '11 at 4:50
2  
This DOES write to the file. It redirects stdout to the file. Have a look at the docs – brice Aug 24 '11 at 16:17
Has anyone done timing / performance testing to compare these solutions? I cannot imagine that this solution is as quick as the solution above (creating a copy and then overwriting the original). – Jamie Sep 28 '11 at 21:39
2  
The key bit here is the comma at the end of the print statement: it surpresses the print statement adding another newline (as line already has one). It's not very obvious at all, though (which is why Python 3 changed that syntax, luckily enough). – VPeric Oct 21 '11 at 14:24
feedback

Here's another example that was tested, and will match search & replace patterns:

import fileinput
import sys

def replaceAll(file,searchExp,replaceExp):
    for line in fileinput.input(file, inplace=1):
        if searchExp in line:
            line = line.replace(searchExp,replaceExp)
        sys.stdout.write(line)

Example use:

replaceAll("/fooBar.txt","Hello\sWorld!$","Goodbye\sWorld.")
link|improve this answer
1  
The example use provides a regular expression, but neither searchExp in line nor line.replace are regular expression operations. Surely the example use is wrong. – kojiro Nov 14 '11 at 18:18
feedback

This should work: (inplace editiing)

import fileinput

for line in fileinput.input(files, inplace = 1): # Does a list of files, and writes redirects STDOUT to the file in question
      print line.replace("foo", "bar"),
link|improve this answer
I think it should be fileinput.input – DanJ May 25 '11 at 13:59
+1. Also if you receive a RuntimeError: input() already active then call the fileinput.close() – geographika Nov 18 '11 at 9:24
feedback

As lassevk suggests, write out the new file as you go, here is some example code:

fin = open("a.txt")
fout = open("b.txt", "wt")
for line in fin:
    fout.write( line.replace('foo', 'bar') )
fin.close()
fout.close()
link|improve this answer
feedback

Create a new file, copy lines from the old to the new, and do the replacing before you write the lines to the new file.

link|improve this answer
feedback

@chutsu @jml: Eli is correct. When using fileinput with inplace=True, stout is redirected to the file. So, in his for loop, the output from the print statements is being sent to the file.

What's really happening is that a backup of the original file is made, and then stdout is redirected to a new file with the same name as the original file. The result is an "in place" edit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.