How to capitalize a string in c++...! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to capitalize a string in c++...!

make code in c++ only...

23rd May 2017, 5:59 PM
Zeeshan Salam
Zeeshan Salam - avatar
1 Answer
+ 3
Boost string algorithms: #include <boost/algorithm/string.hpp> #include <string> std::string str = "Hello World"; boost::to_upper(str); std::string newstr = boost::to_upper_copy<std::string>("Hello World"); Reference: https://stackoverflow.com/questions/735204/convert-a-string-in-c-to-upper-case
23rd May 2017, 6:42 PM
Maaz
Maaz - avatar