in reply to Flip-flop reset?
will do the trick, since the sub {} will get a new pad (where the .. state is stored) each time mySub is called. This only works if the sub is a closure (uses an outer lexical); otherwise, the sub{} is treated more as if it were a kind of constant, and doesn't get a new pad each time the reference is returned by sub. If @arr isn't lexical, you can still force a closure by replacingmy @arr = ...; sub mySub { goto &{ sub { # added line foreach ( @arr ) { if ( /^PIDTAB/ ... /^\n/ ) { next if ( /^(PIDTAB|\n)/ ); while ( /\s+(\d+):\s+(\d+)\s*:\S+:\S+:D\s+/g ) { # do something } } } }} # added line }
withgoto &{ sub {
my $dummy; goto &{ sub { $dummy if 0;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Flip-flop reset?
by runrig (Abbot) on May 31, 2007 at 23:12 UTC | |
|
Re^2: Flip-flop reset?
by ysth (Canon) on Aug 31, 2006 at 21:07 UTC |