Summary
If you are only going to test a single word against the array, or if the contents of your array changes frequently, the fastest answer is Aaron's:
array.any?{ |s| s.casecmp(mystr)==0 }
If you are going to test many words against a static array, it's far better to use a variation of farnoy's answer: create a copy of your array that has all-lowercase versions of your words, and use include?. (This assumes that you can spare the memory to create a mutated copy of your array.)
# Do this once, or each time the array changes
downcased = array.map(&:downcase)
# Test lowercase words against that array
downcased.include?( mystr.downcase )
My original answer below is a very poor performer and generally not appropriate.
Benchmarks
Following are benchmarks for looking for 1,000 words with random casing in an array of slightly over 100,000 words, where 500 of the words will be found and 500 will not.
- The 'regex' text is my answer here, using
any?.
- The 'casecmp' test is Arron's answer, using
any? from my comment.
- The 'downarray' test is farnoy's answer, re-creating a new downcased array for each of the 1,000 tests.
- The 'downonce' test is farnoy's answer, but pre-creating the lookup array once only.
user system total real
regex 26.535000 0.000000 26.535000 ( 26.530000)
casecmp 9.236000 0.000000 9.236000 ( 9.245000)
downarray 29.265000 0.000000 29.265000 ( 29.253000)
downonce 3.542000 0.000000 3.542000 ( 3.537000)
If you can create a single downcased copy of your array once to perform many lookups against, farnoy's answer is the best.
Test code is here: http://pastie.org/3403664
Original Answer
I would personally create a case-insensitive regex (for a string literal) and use that:
re = /\A#{Regexp.escape(str)}\z/i # Match exactly this string, no substrings
all = array.grep(re) # Find all matching strings…
any = array.any?{ |s| s =~ re } # …or see if any matching string is present
Using any? can be slightly faster than grep as it can exit the loop as soon as it finds a single match.