]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/strutl.cc
Add support for the LANGUAGE environment variable
[apt.git] / apt-pkg / contrib / strutl.cc
index 2913fbf44e42f74bf8104cb5b97051816c0940d7..d3d6e27398f07f3d0ebdd36bfcff62919d084c9e 100644 (file)
@@ -1000,6 +1000,23 @@ bool TokSplitString(char Tok,char *Input,char **List,
    return true;
 }
                                                                        /*}}}*/
+// ExplodeString - Split a string up into a vector                     /*{{{*/
+// ---------------------------------------------------------------------
+/* This can be used to split a given string up into a vector, so the
+   propose is the same as in the method above and this one is a bit slower
+   also, but the advantage is that we an iteratable vector */
+vector<string> ExplodeString(string const &haystack, char const &split) {
+       string::const_iterator start = haystack.begin();
+       string::const_iterator end = start;
+       vector<string> exploded;
+       do {
+               for (; end != haystack.end() && *end != split; ++end);
+               exploded.push_back(string(start, end));
+               start = end + 1;
+       } while (end != haystack.end() && (++end) != haystack.end());
+       return exploded;
+}
+                                                                       /*}}}*/
 // RegexChoice - Simple regex list/list matcher                                /*{{{*/
 // ---------------------------------------------------------------------
 /* */