How could one convert a string to upper case. The examples I have found from googling only have to deal with chars.
#include #include std::string str = "Hello World"; std::transform(str.begin(), str.end(),str.begin(), ::toupper);