Help for this page

Select Code to Download


  1. or download this
        my @matches = grep { $file[$_] =~ /^\Q$storeline|\E/ } 0..$#file;
    
  2. or download this
        my @matches = grep { /^\Q$storeline|\E/ } @file;