Help for this page

Select Code to Download


  1. or download this
      next if $foo =~ /^#/;
      if ( $foo =~ /^(?:this|that|or|something|else)$/ { ... }
    
  2. or download this
      if ( $foo =~ /^$bar$/i ) { ... }
  3. or download this
      if ( lc($foo) eq lc($bar) ) { ... }