Help for this page

Select Code to Download


  1. or download this
    my @selected_names = grep(!/todd/, @all_names);
    
  2. or download this
    my @selected_names = grep { $_ ne 'todd' } @all_names;