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"] ) {...}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depending on the contents of the strings, a regex is quite convenient:
Failing that, you can grep over a list: