35 split_first(
const std::string &
s, std::string &lhs, std::string &rhs,
char c)
38 if (
offset == std::string::npos) {
50 split_last(
const std::string &
s, std::string &lhs, std::string &rhs,
char c)
53 if (
offset == std::string::npos) {
74 if (
ignore && last == first) {
76 last =
s.find_first_of(
token, ++first);
78 if (last == std::string::npos) {
79 if (first !=
s.size())
80 v.push_back(
s.substr(first));
85 while (last != std::string::npos) {
86 v.push_back(
s.substr(first, last - first));
89 first =
s.find_first_not_of(
token, last + 1);
91 if (first == std::string::npos)
96 last =
s.find_first_of(
token, first);
99 v.push_back(
s.substr(first));