Help for this page

Select Code to Download


  1. or download this
    @results = grep( /^$key/, @raw_data );
    
  2. or download this
    foreach( @results ) {
        $record = $_;
    ...
        $record =~ s/^\d+//;
        print $record;
    }