How could one convert a string to upper case. The examples I have found from googling only have to deal with chars.
Boost string algorithms:
#include #include std::string str = "Hello World"; boost::to_upper(str); std::string newstr = boost::to_upper_copy("Hello World");