Help for this page

Select Code to Download


  1. or download this
    if (/Grapes/ || /strawberry/i) {
        print;
    ...
    else {
        print "$_ is not in the list.\n";
    }
    
  2. or download this
    if (/Grapes|(?i:strawberry)/) {
        ....
    ...
    else {
        ....
    }
    
  3. or download this
    if(/foo/) {
        # do something
    ...
    else {
        # complain about falling through
    }