Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: File parsing-again

by Aragorn (Curate)
on Jun 30, 2004 at 15:06 UTC ( [id://370777]=note: print w/replies, xml ) Need Help??


in reply to File parsing-again

Maybe this helps:
#!/usr/local/bin/perl use strict; use warnings; my @ctx_starters = qw(start1 start3); while (my $line = <DATA>) { if (grep { $line =~ /$_/ } @ctx_starters) { print $line; INNER: while ($line = <DATA>) { next INNER if $line !~ /^end/; print $line; last INNER; } } else { print $line; } } __DATA__ start1 foo bar end start2 baz quux end start3 bla bla end start4 hmm end start5 last one here end
Arjen

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://370777]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (2)
As of 2024-04-26 03:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found