Help for this page

Select Code to Download


  1. or download this
      my @new = grep { $_ ne "certain string" } @old;
    
  2. or download this
      my @new = grep { index($_, "certain string") == -1 } @old;