I want to know what\'s the best way to make the String.include? methods ignore case. Currently I\'m doing the following. Any suggestions? Thanks!
String.include?
my_array.map!{|c| c.downcase.strip}
where map! changes my_array, map instead returns a new array.
map!
map