How to capitalize a string in c++...! | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
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 Réponse
+ 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