#include <StringFunctions.h>
Static Public Member Functions | |
static void | split (const std::string &s, std::vector< std::string > &tokens, const std::string &delims=" \t\n") |
Definition at line 31 of file StringFunctions.h.
void StringFunctions::split | ( | const std::string & | s, |
std::vector< std::string > & | tokens, | ||
const std::string & | delims = " \t\n" |
||
) | [static] |
Splits the given string into single tokens
s | string |
tokens | returned tokens (no empty tokens are returned) |
delims | delimitation characters |
Definition at line 32 of file StringFunctions.cpp.