Help for this page

Select Code to Download


  1. or download this
    given ($x) {
       when (/abc/) { ... }
       when (/def/) { ... }
       when (/ghi/) { ... }
    }
    
  2. or download this
    if    ($x =~ /abc/) { ... }
    elsif ($x =~ /def/) { ... }
    elsif ($x =~ /ghi/) { ... }