Changeset 1049 for code/branches/core2/src/util/String.h
- Timestamp:
- Apr 14, 2008, 12:48:25 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core2/src/util/String.h
r1020 r1049 40 40 41 41 _UtilExport unsigned int getNextQuote(const std::string& str, unsigned int start); 42 _UtilExport bool isBetweenQuotes(const std::string& str, unsigned int pos); 42 43 43 44 _UtilExport bool hasStringBetweenQuotes(const std::string& str); 44 45 _UtilExport std::string getStringBetweenQuotes(const std::string& str); 45 46 46 _UtilExport void stripEnclosingQuotes(std::string* str); 47 _UtilExport std::string getStrippedEnclosingQuotes(const std::string& str); 47 _UtilExport std::string stripEnclosingQuotes(const std::string& str); 48 48 49 49 _UtilExport bool isEmpty(const std::string& str); 50 50 _UtilExport bool isComment(const std::string& str); 51 51 _UtilExport bool isNumeric(const std::string& str); 52 53 _UtilExport std::string addSlashes(const std::string& str); 54 _UtilExport std::string removeSlashes(const std::string& str); 52 55 53 56 _UtilExport void lowercase(std::string* str); … … 63 66 _UtilExport std::string getComment(const std::string& str); 64 67 _UtilExport unsigned int getCommentPosition(const std::string& str); 68 _UtilExport unsigned int getNextCommentPosition(const std::string& str, unsigned int start = 0); 65 69 66 70 //! The Convert class has some static member functions to convert strings to values and values to strings.
Note: See TracChangeset
for help on using the changeset viewer.