Is there an inbuilt function to convert C++ string from upper case letters to lowercase letters ? If not converting it to cstring and using tolower on each char is the only
std::transform(myString.begin(), myString.end(), myString.begin(), std::tolower);