Help for this page

Select Code to Download


  1. or download this
    foreach (@names) {
      next if /^buckaduck$/i;
      ...
    }
    
  2. or download this
    foreach (@names) {
      next if ( lc($_) eq lc('buckaduck') );
      ...
    }