c has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; my @list = qw(Charles Cody Gina); &action; sub action { for my $i(@list) { &decide($i); } } sub decide { my $i = shift; next if (/^C/); print "$i\n"; }
the next if statement causes the script to spit out an error that it "Exiting subroutine via next at Script line 14". i can see where this error would come up, since, according to the subroutine, there is no list, just a single value for $i that is being passed to it.
is there a method of maintaining my structure and would allow me to exit the subroutine for the specific value within the list? sorry that this example is simplified rather than providing the entire code snippet. rather that seeking a rewrite to solve my code issue, i am more interested in finding out if it is possible to drop out of a sub routine's action without exiting the script entirely.
thanks! -c
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: next within one subroutine that looks to another subroutine
by dragonchild (Archbishop) on Feb 13, 2002 at 19:40 UTC | |
|
Re: next within one subroutine that looks to another subroutine
by ehdonhon (Curate) on Feb 13, 2002 at 19:33 UTC | |
|
Re: next within one subroutine that looks to another subroutine
by trs80 (Priest) on Feb 13, 2002 at 20:44 UTC | |
|
Re: next within one subroutine that looks to another subroutine
by dreadpiratepeter (Priest) on Feb 13, 2002 at 18:55 UTC | |
|
Re: next within one subroutine that looks to another subroutine
by Rich36 (Chaplain) on Feb 13, 2002 at 19:07 UTC | |
by dragonchild (Archbishop) on Feb 13, 2002 at 19:44 UTC |