I have my code like this:
if ( $var eq "str1" || $var eq "str2" || $var eq "str3" )
{
...
}
Is there anyways to optimize this. I want something like:
if ( $var eq ["str1" || "str2" || "str3"] ) {...}
|
I have my code like this:
Is there anyways to optimize this. I want something like:
|
|||||
|
|
Depending on the contents of the strings, a regex is quite convenient:
Failing that, you can grep over a list:
|
|||||||||||||
|
|
In Perl 5.10 or better:
The |
|||||
|
|
||||
|
|
I'm semi-joking, but this will do it:
See also this Perl Monks thread |
|||
|
|