00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef Foundation_StringTokenizer_INCLUDED
00040 #define Foundation_StringTokenizer_INCLUDED
00041
00042
00043 #include "Poco/Foundation.h"
00044 #include "Poco/Exception.h"
00045 #include <vector>
00046 #include <cstddef>
00047
00048
00049 namespace Poco {
00050
00051
00052 class Foundation_API StringTokenizer
00056 {
00057 public:
00058 enum Options
00059 {
00060 TOK_IGNORE_EMPTY = 1,
00061 TOK_TRIM = 2
00062 };
00063
00064 typedef std::vector<std::string>::const_iterator Iterator;
00065
00066 StringTokenizer(const std::string& str, const std::string& separators, int options = 0);
00076
00077 ~StringTokenizer();
00079
00080 Iterator begin() const;
00081 Iterator end() const;
00082
00083 const std::string& operator [] (std::size_t index) const;
00086
00087 std::size_t count() const;
00089
00090 private:
00091 StringTokenizer(const StringTokenizer&);
00092 StringTokenizer& operator = (const StringTokenizer&);
00093
00094 std::vector<std::string> _tokens;
00095 };
00096
00097
00098
00099
00100
00101
00102
00103 inline StringTokenizer::Iterator StringTokenizer::begin() const
00104 {
00105 return _tokens.begin();
00106 }
00107
00108
00109 inline StringTokenizer::Iterator StringTokenizer::end() const
00110 {
00111 return _tokens.end();
00112 }
00113
00114
00115 inline const std::string& StringTokenizer::operator [] (std::size_t index) const
00116 {
00117 if (index >= _tokens.size()) throw RangeException();
00118 return _tokens[index];
00119 }
00120
00121
00122 inline std::size_t StringTokenizer::count() const
00123 {
00124 return _tokens.size();
00125 }
00126
00127
00128 }
00129
00130
00131 #endif // Foundation_StringTokenizer_INCLUDED