954,515 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How to find and extract a block from file?

hi,

attached is my sample file. i want to extract all lines starting from -- num until before -- Advanced.
appreciate if anyone can show me.

thanks
johnny

Attachments sample.txt (3.17KB)
tcl76
Light Poster
39 posts since Jan 2011
Reputation Points: 10
Solved Threads: 0
 

Something like

from itertools import dropwhile, takewhile

def not_advanced(line):
    return not line.startswith("-- Advanced")

def not_num(line):
    return not line.startswith("-- num")

with open("sample.txt") as lines:
    lines = takewhile(not_advanced, dropwhile(not_num, lines))
    for line in lines:
        print line
Gribouillis
Posting Maven
Moderator
2,786 posts since Jul 2008
Reputation Points: 1,044
Solved Threads: 691
 

thanks but output i get is:

btw, what is itertools? didnt realize got this function. i'm using Python 2.6.6

tcl76
Light Poster
39 posts since Jan 2011
Reputation Points: 10
Solved Threads: 0
 

thanks but output i get is:

btw, what is itertools? didnt realize got this function. i'm using Python 2.6.6


The object x returned is an iterable. You can convert to a list with list(x), or iterate with a for loop: for line in x .

Itertools is a module in a standard library which contains useful functions to manipulate iterables.

Gribouillis
Posting Maven
Moderator
2,786 posts since Jul 2008
Reputation Points: 1,044
Solved Threads: 691
 

you are super!
with open("sample.txt") as lines:
lines = takewhile(not_advanced, dropwhile(not_num, lines))
print lines
for line in lines:
print line

tcl76
Light Poster
39 posts since Jan 2011
Reputation Points: 10
Solved Threads: 0
 
you are super! with open("sample.txt") as lines: lines = takewhile(not_advanced, dropwhile(not_num, lines)) print lines for line in lines: print line


hehe :) Add itertools to your toolbag !

Gribouillis
Posting Maven
Moderator
2,786 posts since Jul 2008
Reputation Points: 1,044
Solved Threads: 691
 

yes thanks for the guidance.
am now reviewing:
http://www.doughellmann.com/PyMOTW/itertools/

tcl76
Light Poster
39 posts since Jan 2011
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: