Help for this page

Select Code to Download


  1. or download this
    my @winners = grep /prefix$part/, @list;
    
  2. or download this
    while (<>) {
      next unless /prefix$part/;
     ...
    }