Finding A Case Insensitive Sub String in C++ using STL
Read moreHow do you compare two strings with case sensitive in python?
Compare strings by ignoring case using Python As both the strings has similar characters but in different case. So to match these strings by ignoring case we need to convert both strings to lower case and then match using operator == i.e. It matched the strings in case in sensitive manner.
Read more