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
    @matches = grep { /^\Q$storeline|\E/ } @file;
    
  3. or download this
    no_match($storeline), return unless @matches;
    
  4. or download this
    duped_ids($storeline), return if @matches > 1;