I am using std::string\'s find() method to test if a string is a substring of another. Now I need case insensitive version of the same thing. For s
std::string
find()
Why not just convert both strings to lowercase before you call find()?
tolower
Notice: