I want to convert a std::string to lowercase. I am aware of the function tolower(), however in the past I have had issues with this function and it
std::string
tolower()
// tolower example (C++) #include // std::cout #include // std::string #include // std::locale, std::tolower int main () { std::locale loc; std::string str="Test String.\n"; for (std::string::size_type i=0; i
For more information: http://www.cplusplus.com/reference/locale/tolower/