I have some simple python code that searches files for a string e.g. path=c:\path, whereby the c:\path may vary. The current code is:
def findPath( i_file) :
lines = open( i_file ).readlines()
for line in lines :
if line.startswith( "Path=" ) :
return # what to do here in order to get line content after "Path=" ?
What is a simple way to get a string text after Path=?
Is there a simple method, without closures, reflection or other esoteric things ?
readlines()read all lines in the file at once. You could usefor line in open(filename):instead of to read one line at a time. – J.F. Sebastian Mar 1 '09 at 16:45