38 split_first(
const std::string &
s, std::string &lhs, std::string &rhs,
char c)
41 if (
offset == std::string::npos) {
53 split_last(
const std::string &
s, std::string &lhs, std::string &rhs,
char c)
56 if (
offset == std::string::npos) {
77 if (
ignore && last == first) {
79 last =
s.find_first_of(
token, ++first);
81 if (last == std::string::npos) {
82 if (first !=
s.size())
83 v.push_back(
s.substr(first));
88 while (last != std::string::npos) {
89 v.push_back(
s.substr(first, last - first));
92 first =
s.find_first_not_of(
token, last + 1);
94 if (first == std::string::npos)
99 last =
s.find_first_of(
token, first);
102 v.push_back(
s.substr(first));