in reply to Re: Finding part of a file
in thread Finding part of a file
if (my $status = /^$start$/ .. /^$end$/) { print unless $status =~ /^1$|E/; } # Or no extra variable, but getting more obfuscated :) print if (/^$start$/../^$end$/) !~ /^1?$|E/;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Finding part of a file
by blakem (Monsignor) on Dec 05, 2001 at 03:53 UTC |