I need to check for
"Apple" = "Apple" TRUE
"Apple" = "APPLE" TRUE
"Apple" = "Apple1" FALSE
in ruby
I need a string comparison but for the check to not be case sensitive.
thks
|
I need to check for
in ruby I need a string comparison but for the check to not be case sensitive. thks |
||||
|
|
|
You're looking for
Alternatively, you can convert both strings to lower case ( |
|||||||||||||||||||
|