To simplify the given example and keep to the "one entry point one exit point to and from a subroutine" style, I would only add an else to the subroutines if statement Check the following:
#!/usr/bin/perl -w
use strict;
sub test {
my ($param) = @_;
if ($param =~ /e/) {
print "e found.\n";
}
else {
print "No e found.\n";
}
};
&test( "test" );
&test( "toast" );
I have also tried the following in case there are more than two options ie (more than true or false). I have only one entry point in a subroutine and one exit from that routine. It does mean though that I have to test the return value of the subroutine. Using the same example as above I could expand the tests (if statements) and the value that is returned, and then test these values later. E.g.
#!/usr/bin/perl -w
use strict;
sub test {
my ($param) = @_;
my $rc = 0;
if ($param =~ /e/) {
$rc = 1;
}
elsif ($param =~ /a/) {
$rc = 2;
}
return($rc);
};
my @tsts = qw/ test toast kitty /;
foreach my $word (@tsts) {
my $ret_val = &test($word);
if ($ret_val == 1) {
print "E found\n";
}
elsif ($ret_val == 2) {
print "A found\n";
}
else {
print "A or E NOT found\n";
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|