in reply to RE: Re: something about improving code...
in thread something about improving code...
my ($START, $STOP) = qw(START STOP); while (<DATA>) { $where = /$START/../$STOP/; if ($where and $where > 1 and $where !~ /E0/) { print "PRINTING\n"; } else { print "not printing"; } } __END__
-- Randal L. Schwartz, Perl hacker
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(jcwren) RE: RE: RE: Re: something about improving code...
by jcwren (Prior) on Jun 28, 2000 at 03:51 UTC | |
by merlyn (Sage) on Jun 28, 2000 at 03:57 UTC | |
by cwest (Friar) on Jun 28, 2000 at 04:20 UTC |