Help for this page

Select Code to Download


  1. or download this
    my $count = grep /match/, <DATA>;
    print $count;
    ...
    not34234
    match
    4232434
    
  2. or download this
    print scalar(grep /match/, <DATA>);