Help for this page

Select Code to Download


  1. or download this
    if (($site =~ "l",) || ($site =~ "c") || ($site =~ "n")
          || ($site =~ "w"))
    
  2. or download this
    if ( $site =~ /[lcnw]/ )
  3. or download this
    if ( $site eq "l" or $site eq "c" or $site eq "n" 
         or $site eq "w")
    
  4. or download this
    elsif ($site =~ /wf/)
    
  5. or download this
    if ($site =~ /^([lcnh]|wf)$/) { # one block handles all cases
        $site = "l" unless ( $site =~ /(h|wf)/ );
        $server = "yos.$site.com";
        # and so on
    }