#include <boost/algorithm/string.hpp> #include <boost/tokenizer.hpp> //May be needed using namespace std; using namespace boost; using namespace boost::algorithm; http://www.boost.org/doc/libs/1_56_0/doc/html/string_algo.html http://theboostcpplibraries.com/boost.stringalgorithms Alter supplied string vs Create a new string from the output Many of the string functions some in function_name() and function_name_copy() versions, where the _copy() version returns the output and the non _copy() version instead alters the supplied string. Test […]
Category: Boost C++ Libraries
.Installing and Using Boost
C++ is great, but you tend to come across some things in other languages that C++ just doesn't have an equivalent function for, forcing you to have to write your own solution. We're big fans of C++ and its to the metal simplicity and where possible we often try and avoid relying on third party libraries. But after […]