Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a file containing some lines code followed by a string pattern. i need to write everything before the line containing the string pattern in file one and everything after the string pattern in file two:

e.g. (file-content)

  • codeline 1
  • codeline 2
  • string pattern
  • codeline 3

The output should be file one with codeline 1, codeline 2 and file two with codeline 3.

I am familiar with writing files but unfortunately I do not know how to determine the content before and after the string pattern.

share|improve this question
Could you give an example of the string pattern and codeline used? - Also is it a .csv file or just a regular .txt file? – tabchas Jun 13 '12 at 18:19

7 Answers

up vote 7 down vote accepted

If the input file fits into memory, the easiest solution is to use str.partition():

with open("inputfile") as f:
    contents1, sentinel, contents2 = f.read().partition("Sentinel text\n")
with open("outputfile1", "w") as f:
    f.write(contents1)
with open("outputfile2", "w") as f:
    f.write(contents2)

This assumes that you know the exact text of the line separating the two parts.

share|improve this answer
2  
+1. This is a really nice, clean, readable solution if it fits in memory. – Lattyware Jun 13 '12 at 18:35
+1 my favorite, prefer it over my own solution if given the same caveat regarding fitting in memory – Levon Jun 13 '12 at 18:43

This approach is similar to Lev's but uses itertools because it's fun.

 dont_break = lambda l: l.strip() != 'string_pattern'

 with open('input') as source:
     with open('out_1', 'w') as out1:
         out1.writelines(itertools.takewhile(dont_break, source))
     with open('out_2', 'w') as out2:
         out2.writelines(source)

You could replace the dont_break function with a regular expression or anything else if necessary.

share|improve this answer
2  
This is probably the best solution for files that won't fit in memory. Itertools means the loops are done C-side which means they'll be faster (which could matter given the large number of lines one would expect where memory matters) I'd note that if you are going to define a lambda separately like that, you might as well use a def statement. – Lattyware Jun 13 '12 at 18:30
+1 for the fun. – Lev Levitsky Jun 13 '12 at 18:31

A more efficient answer which will handle large files and consume a limited amount of memory..

inp = open('inputfile')
out = open('outfile1', 'w')
for line in inp:
  if line == "Sentinel text\n":
    out.close()
    out = open('outfile2', 'w')
  else:
    out.write(line)
out.close()
inp.close()
share|improve this answer
2  
Use the with statement where opening files. – Lattyware Jun 13 '12 at 18:28

A naive example (that doesn't load the file into memory like Sven's):

with open('file', 'r') as r:
    with open('file1', 'w') as f:
        for line in r:
            if line == 'string pattern\n':
                break
            f.write(line)
    with open('file2', 'w') as f:
        for line in r:
            f.write(line)

This assumes that 'string pattern' occurs once in the input file.

If the pattern isn't a fixed string, you can use the re module.

share|improve this answer
2  
Use the with statement where opening files. – Lattyware Jun 13 '12 at 18:28
1  
@Lattyware this is a naive example :) Also, in this particular case it's more complicated than usual to adapt the code to using with. – Lev Levitsky Jun 13 '12 at 18:30
2  
And? with is the best practice. There is no reason not to use it. The idea that it's hard to change simply isn't true - with is easier to use and ensures files are closed, even on exceptions - something your code doesn't even attempt at the moment. – Lattyware Jun 13 '12 at 18:34
1  
You seem to have taken offence, if you know it's the best idea, then why not use it? If you don't want to give code without seeing code, ask for code from the asker, don't give an answer which works but has hidden potential bugs - that's harmful to everyone (such as people who might come across this question looking for an answer later). I am giving a suggestion to improve the answer, which is in line with the way SO is meant to work. That's not an attack on you, it's an attempt to improve the resource. – Lattyware Jun 13 '12 at 18:47
1  
Comments don't display it clearly enough. In the spirit of SO, I made the edit myself (and fixed another subtle bug - the pattern needs a newline to work). – Lattyware Jun 13 '12 at 18:56
show 2 more comments
with open('data.txt') as inf, open('out1.txt','w') as of1, open('out2.txt','w') as of2:
    outf = of1
    for line in inf:
        if 'string pattern' in line:
            outf = of2
            continue  # prevent output of the line with "string pattern" 
        outf.write(line)

will work with large files since it works line by line. Assumes string pattern occurs only once in the input file. I like the str.partition() approach best if the whole file can fit into memory (which may not be a problem)

Using with ensures the files are automatically closed when you are done, or an exception is encountered.

share|improve this answer
1  
Close, but I believe your code will result in 'string pattern' appearing in outf2, when the question stated that 'string pattern' should disappear from the output. In that case, just add continue as the next line after outf = outf2 and it should work. – Robru Jun 13 '12 at 18:31
@Robru I mentioned the use of continue to make the string pattern disappear , but I guess I should have read the question more carefully :-) .. I'll update my solution, thanks. – Levon Jun 13 '12 at 18:33

You need something like:

def test_pattern(x):
    if x.startswith('abc'): # replace this with some exact test
        return True
    return False

found = False
out = open('outfile1', 'w')
for line in open('inputfile'):
    if not found and test_pattern(line):
        found = True
        out.close()
        out = open('outfile2', 'w')
    out.write(line)
out.close()

replace the line with startswith with a test that works on your pattern (using pattern matching from re if necessary, but anything that finds the devider line will do).

share|improve this answer
2  
Use the with statement where opening files. – Lattyware Jun 13 '12 at 18:28
2  
@Sven: thanks for noticing the typos. IMHO a oneliner is inappropriate if you do not know exactly how to test yet, this was just an easily expandable example with fallthrough on being False. If the test becomes multiline with other if statements, e.g. look for first 2 characters, then split on '|' and inspect the following two characters, then this is more easily adaptable. – Anthon Jun 13 '12 at 18:35
1  
@Lattyware: with is nice but inappropriate as it is a relatively new addition to Python and we don't know which version of Python dom_frank is using. – Anthon Jun 13 '12 at 18:37
4  
@Anthon Nobody who's just learning python is going to use anything pre-2.5; if the OP is using 2.5, then he just needs to add from __future__ import with_statement. – Dougal Jun 13 '12 at 18:38
3  
@Anthon Just because something is new doesn't mean it should be avoided, besides that, as Dougal says, this is not by any means a new feature. It's standard and everyone (as they should) uses it. I consider any new code not using it as wrong - it introduces potential bugs for no reason and lowers readability. – Lattyware Jun 13 '12 at 18:40
show 1 more comment

No more than three lines:

with open('infile') as fp, open('of1','w') as of1, open('of2','w') as of2:
    of1.writelines(iter(fp.readline, sentinel))
    of2.writelines(fp)
share|improve this answer
Good point! I always forget about that form of iter. Of course, it only works for exact known sentinels, not regex matches or anything like that. – Dougal Jun 14 '12 at 16:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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