Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: how to check for a word in a file and if found remove that line, the above line and the below line from the file.

by ikegami (Patriarch)
on Jan 22, 2016 at 16:35 UTC ( [id://1153384]=note: print w/replies, xml ) Need Help??


in reply to how to check for a word in a file and if found remove that line, the above line and the below line from the file.

my $prev = ''; my $skip_next = 0; while (<>) { if (/XXXXX/) { $prev = ''; $skip_next = 1; } elsif ($skip_next) { --$skip_next; } else { print($prev); $prev = $_; } } print($prev);

If you want to skip more than one line:

my $skip_before = 1; my $skip_after = 1; my @prev; my $skip_next = 0; while (<>) { if (/XXXXX/) { @prev = (); $skip_next = $skip_after; } elsif ($skip_next) { --$skip_next; } else { push @prev, $_; print(shift(@prev)) if @prev > $skip_before; } } print(@prev);

One read. One check. Handles subsequent matching lines. Handles matches on the first line. Handles matches on the last line.

  • Comment on Re: how to check for a word in a file and if found remove that line, the above line and the below line from the file.
  • Select or Download Code

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-24 09:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found