#include <StringTokenizer.h>
Public Member Functions | |
StringTokenizer (const std::string &_str, const std::string &_delim) | |
~StringTokenizer () | |
int | countTokens () |
bool | hasMoreTokens () |
std::string | nextToken () |
int | nextIntToken () |
double | nextFloatToken () |
std::string | nextToken (const std::string &delim) |
std::string | remainingString () |
std::string | filterNextToken (const std::string &filterStr) |
Private Attributes | |
std::string | token_str |
std::string | delim |
|
Definition at line 3 of file StringTokenizer.cpp. |
|
Definition at line 34 of file StringTokenizer.h. |
|
Definition at line 52 of file StringTokenizer.cpp. |
|
Definition at line 155 of file StringTokenizer.cpp. References nextToken(). |
|
Definition at line 84 of file StringTokenizer.cpp. References token_str. |
|
Definition at line 120 of file StringTokenizer.cpp. References nextToken(). |
|
Definition at line 114 of file StringTokenizer.cpp. References nextToken(). Referenced by CSVParser::operator>>(). |
|
Definition at line 126 of file StringTokenizer.cpp. References token_str. |
|
Definition at line 90 of file StringTokenizer.cpp. References delim, and token_str. Referenced by filterNextToken(), nextFloatToken(), and nextIntToken(). |
|
Definition at line 149 of file StringTokenizer.cpp. References token_str. |
|
Definition at line 48 of file StringTokenizer.h. Referenced by countTokens(), nextToken(), and StringTokenizer(). |
|
Definition at line 47 of file StringTokenizer.h. Referenced by countTokens(), hasMoreTokens(), nextToken(), remainingString(), and StringTokenizer(). |