Help for this page

Select Code to Download


  1. or download this
    grep /^\Q$search\E\z/i, @arr
    
  2. or download this
    $search = lc($search);
    grep lc($_) eq $search, @arr;