It's as simple as that:

How can I get Browser.text.include?, or Ruby in general, to be case insensitive for that specified command?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

One of the easiest ways is to downcase or upcase the text that you're reading:

Browser.text.downcase.include?

Then, you need to make sure that your desired text is supplied in all lowercase.

link|improve this answer
4  
Maybe you downcase both strings? – Dave McNulla Jul 29 '11 at 5:21
Thanks this will be useful for me. – Alastair Montgomery Jul 29 '11 at 8:04
@Dave - yes, just depends on how much control you have over the incoming data. Using downcase on both would be the safest way. – adam reed Jul 29 '11 at 13:39
feedback

You can use String#match with a regular expression. e.g.:

("CaseSensitive".match /SENSITIVE/i) != nil

That will return true if there is a case-insensitive match, false otherwise. So for the above example, it returns true, as 'SENSITIVE' is found within 'CaseSensitive'.

For your example:

(Browser.text.match /yourString/i ) != nil
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.