Help for this page

Select Code to Download


  1. or download this
    my @new_list = grep { /regular expression/ } @list;
    
  2. or download this
    ($i)= grep { m/^#/ } $_;
    push @new, $i;