#include <kanzi/core/cpp/string.hpp>
#include <kanzi/core/cpp/string_view.hpp>
#include <kanzi/core/cpp/vector.hpp>
#include <kanzi/core/core_api.hpp>
#include <boost/algorithm/string/case_conv.hpp>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string/trim.hpp>
Namespaces | |
kanzi | |
Functions | |
vector< string > | kanzi::splitString (const string &source, const string &delimiter) |
Splits string to tokens. More... | |
vector< string_view > | kanzi::splitString (string_view source, string_view delimiter) |
Splits string view to tokens. More... | |
unsigned char | kanzi::toLower (unsigned char ch) |
Wrapper for tolower() that returns unsigned char. More... | |
string_view | kanzi::trim (string_view input) |
boost::trim() implementation for string_view. More... | |