Tutorial by Examples

#include <iostream> #include <vector> #include <string> #include <boost/algorithm/string.hpp> using namespace std; int main() { // String to split string str = "You're supposed to see this!|NOT THIS!!!!!!"; // Line container vec...
boost::replace_all(): #include <iostream> #include <string> #include <boost/algorithm/string.hpp> using namespace std; int main() { // String to replace characters in string str = "Darn you, Darn you to the 5th power!!!"; // Replace "Da...
to_upper(): #include <iostream> #include <string> #include <boost/algorithm/string.hpp> using namespace std; int main() { // String to convert characters to uppercase string str = "ThIS iS SUpPoSEd tO Be UpPeR CAsE."; // Convert characters i...

Page 1 of 1