25 std::vector<std::string>
split(
const char* pszString,
const char* splitChars =
" ");
37 std::vector<std::string>
split(
const std::string& szString,
38 const std::string& splitChars =
" ");
50 std::vector<std::wstring>
split(
const wchar_t* pszString,
51 const wchar_t* splitChars = L
" ");
63 std::vector<std::wstring>
split(
const std::wstring& szString,
64 const std::wstring& splitChars = L
" ");
The namespace containing all the "helper" functions in the C++ code.
std::vector< std::string > split(const char *pszString, const char *splitChars)
Split the given string into a list of strings given the character on which to split....