in reply to Re^4: Doing "it" only once
in thread Doing "it" only once
for ( @some_array ) { if ( ?^foo$? ) { print "skipping foo\n"; next; } if ( ?^bar$? ) { handle_bar($_); next; } handle_rest($_); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Doing "it" only once
by Limbic~Region (Chancellor) on Sep 21, 2005 at 17:37 UTC | |
by Roy Johnson (Monsignor) on Sep 21, 2005 at 18:35 UTC |