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?
|
It's as simple as that: How can I get
| ||||
|
feedback
|
|
One of the easiest ways is to downcase or upcase the text that you're reading:
Then, you need to make sure that your desired text is supplied in all lowercase. | |||||||||
feedback
|
|
You can use String#match with a regular expression. e.g.:
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:
| |||
|
feedback
|