- or download this
my @matches = grep { $file[$_] =~ /^\Q$storeline|\E/ } 0..$#file;
- or download this
@matches = grep { /^\Q$storeline|\E/ } @file;
- or download this
no_match($storeline), return unless @matches;
- or download this
duped_ids($storeline), return if @matches > 1;