#include <string.h>
List of all members.
Public Member Functions |
| String () |
| String (std::string const &Other) |
| String (char const *Other) |
int | Printf (String const &Fmt,...) |
| Print with format.
|
int | PrintfV (String const &Fmt, va_list ArgList) |
| Print with format and ArgList.
|
char const * | CStr () const |
| Get C-string.
|
void | TextFmt (char const *NF) |
| Convert NF (ex: "%10g") to text Format (ex: "%10s")
|
void | Split (String &Left, String &Right, char const *Separator=" ") |
| Split string into left and right parts separated by Separator.
|
bool | HasWord (String const &Word) |
| Check if string has a word Word.
|
void | GetFNKey (String &FNKey) |
| Return string without ending ".something".
|
void | ToUpper () |
| Convert string to upper case.
|
void | ToLower () |
| Convert string to lower case.
|
String | ToUpperCpy () const |
| (copy) Convert string to lower case
|
String | ToLowerCpy () const |
| (copy) Convert string to lower case
|
String & | ToStdString () |
String const & | ToStdString () const |
Constructor & Destructor Documentation
Member Function Documentation
Return string without ending ".something".
Check if string has a word Word.
Print with format and ArgList.
Split string into left and right parts separated by Separator.
Convert NF (ex: "%10g") to text Format (ex: "%10s")
Convert string to lower case.
(copy) Convert string to lower case
Convert string to upper case.
(copy) Convert string to lower case
The documentation for this class was generated from the following file: