http://qs321.pair.com?node_id=723372


in reply to Re^2: chopping the beginning and end of lines in 2 files
in thread chopping the beginning and end of lines in 2 files

I kind of like this one:

[...] for ($start=0;$arr[$start]<15;++$start) {}; for ($end=$#arr;$arr[$end]<15;--$end) {}; print "@seq[$start..$end]\n"; print "@arr[$start..$end]\n";

Just don't understand if you were looking for a number smaller than 10 or 15 :)


GreetZ!,
    ChOas

print "profeth still\n" if /bird|devil/;

Replies are listed 'Best First'.
Re^4: chopping the beginning and end of lines in 2 files
by GrandFather (Saint) on Nov 13, 2008 at 10:40 UTC

    then you might like:

    $_->[1] >= 15 && last or ++$beg for @data; $_->[1] >= 15 && last or ++$end for reverse @data;

    Perl reduces RSI - it saves typing
Re^4: chopping the beginning and end of lines in 2 files
by heidi (Sexton) on Nov 13, 2008 at 09:58 UTC
    10 or 15...anything is fine. i can always change the parameters. it was just a sample program. :)