]> git.saurik.com Git - apt.git/commitdiff
improve documentation for StringSplit()
authorMichael Vogt <mvo@ubuntu.com>
Tue, 1 Oct 2013 10:03:37 +0000 (12:03 +0200)
committerMichael Vogt <mvo@ubuntu.com>
Tue, 1 Oct 2013 10:03:37 +0000 (12:03 +0200)
apt-pkg/contrib/strutl.cc
apt-pkg/contrib/strutl.h

index fd768f18328371b98138bbcb44ff777fdc195478..96c6d2f3537e944841f5f72b6365ba5aaa26c377 100644 (file)
@@ -1120,11 +1120,9 @@ vector<string> VectorizeString(string const &haystack, char const &split)
                                                                        /*}}}*/
 // StringSplit - split a string into a string vector by token          /*{{{*/
 // ---------------------------------------------------------------------
-/* This can be used to split a given string up from a given string token
- * into a vector of strings. A optional "maxsplit" argument can be used
- * to limit the splitting, in this case the 
+/* See header for details.
  */
-vector<string> StringSplit(string const &s, std::string const &sep,
+vector<string> StringSplit(std::string const &s, std::string const &sep,
                            unsigned int maxsplit)
 {
    vector<string> split;
index 080f9f82eb6011dc13180571063703cddac23c3d..eb47287a42327269a646631f563154c32941a1b6 100644 (file)
@@ -70,8 +70,23 @@ bool TokSplitString(char Tok,char *Input,char **List,
 // split a given string by a char
 std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) __attrib_const;
 
-// split a given string by a string token
-std::vector<std::string> StringSplit(std::string const &input, std::string const &sep, unsigned int maxsplit=0) __attrib_const;
+/* \brief Return a vector of strings from string "input" where "sep"
+ * is used as the delimiter string.
+ *
+ * \param input The input string.
+ *
+ * \param sep The seperator to use.
+ *
+ * \param maxsplit (optional) The maximum amount of splitting that
+ * should be done .
+ * 
+ * The optional "maxsplit" argument can be used to limit the splitting,
+ * if used the string is only split on maxsplit places and the last
+ * item in the vector contains the remainder string.
+ */
+std::vector<std::string> StringSplit(std::string const &input, 
+                                     std::string const &sep, 
+                                     unsigned int maxsplit=0) __attrib_const;
 
 void ioprintf(std::ostream &out,const char *format,...) __like_printf(2);
 void strprintf(std::string &out,const char *format,...) __like_printf(2);