Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie file parsing 1

Status
Not open for further replies.

NWNinja

IS-IT--Management
May 24, 2005
166
SE
Hi all!
I have a text file that i want to grab some text from.
The lines a want are located between two lines with known words in them. Example below.

.
.
line i dont want
line i dont want
name
line i want
line i want
end
line i dont want
line i dont want
.
.

I want to grab all lines between "name" and "end". I want the line containing "name" as well. Could anyone help me with some example code? Thanks in advance!
 
what do you have so far?

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
 
Well, not much to be honest, just reading the file line by line. (I´m using ActiveState perl)

Code:
open (FILE, "<C:\\test.txt");
  while( my $line = <FILE>) {    
    print $line;
  }
close FILE;
 
you say you want to 'grab' the lines , where to you want to grab them to? how do you want to hold this data in an array, a string, another file?

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
 
Homework? It's that time of year, isn't it...
Code:
print $_ if (/^name/ ... /^end/);

Steve

[small]"Every program can be reduced by one instruction, and every program has at least one bug. Therefore, any program can be reduced to one instruction which doesn't work." (Object::perlDesignPatterns)[/small]
 
lol - is it that obvious?

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
 
lol - is it that obvious?

I'd say it's that easy but it's not that obvious. Steve used '...' in his example but I think '..' would also work in this case.

- Kevin, perl coder unexceptional!
 
Kevin - in this case you are right. Please accept my apologies for the excessive verbosity of my code...

Steve

[small]"Every program can be reduced by one instruction, and every program has at least one bug. Therefore, any program can be reduced to one instruction which doesn't work." (Object::perlDesignPatterns)[/small]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top