Help for this page

Select Code to Download


  1. or download this
    if ($string =~ /re1/ || $string =~ /re2/ || $string =~ /re3/)
    
  2. or download this
    if      ( $string =~ /re1/ ) {
    #do thing 1
    ...
    } elsif ( $string =~ /re3/ ) {
    #do thing 3
    }