Recently I came across this way to filter out every second value of a list:
perl -E 'say grep --$|, 1..10'
13579
How does it work?
|
$| = 1; will have the effect of setting $| = 0; $| = ""; $| = undef; $| = "erk"; # 0 + "erk" is 0 will set Expand |
|||||||||||||||||||||
|
|
Ha! So, your Too clever by half. |
|||
|
|
|
The subsequent decrements will actually "toggle" it from zero to one to zero and so forth. |
|||
|
|
|
The point is this use is just a nasty hack. |
||||
|
|
grep $zero_or_one = 1 - $zero_or_one, @list– DVK Feb 10 '11 at 15:50grep $zero_or_one^=1, @list– bvr Feb 10 '11 at 16:30grep { $i++ % 2 == 0 }, @listand the intent is clear. Or eliminate extra variables:@list[ grep { $_ % 2 == 0 } 0 .. $#list ]– hobbs Feb 11 '11 at 4:32