Skip to content

Instantly share code, notes, and snippets.

@zachad
Forked from anonymous/array_grep.rb
Created July 12, 2013 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachad/5987889 to your computer and use it in GitHub Desktop.
Save zachad/5987889 to your computer and use it in GitHub Desktop.
# big_array has over 120,000 strings in it
def select_search(q)
big_array.select do |s|
s =~ /^#{Regexp.esecap(q)}/
end
end
def grep_search(q)
big_array.grep( /^#{Regexp.escape(q)}/ )
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment