bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
|
Static Public Member Functions | |
static void | slim (std::string &str) |
Strips leading and trailing double quotes from string. | |
static void | split (const std::string &str, char delimiter, std::vector< std::string > &tokens) |
Splits a string into separate strings based on the delimiter. | |
Definition at line 44 of file CSV_Utils.h.
|
static |
Strips leading and trailing double quotes from string.
There must be a leading and trailing quote for them to be removed. If there is just one or the other, then the double quote is left.
str | string to remove leading and trailing double quotes from |
Definition at line 72 of file CSV_Utils.cc.
|
static |
Splits a string into separate strings based on the delimiter.
str | The string to break apart into different tokens |
delimiters | Contains the delimiters to use to break apart the string |
tokens | The resulting vector of tokens |
Definition at line 52 of file CSV_Utils.cc.