#include <vdkstring.h>
|
Constructor, makes an empty string VDKString s; |
|
Constructor
|
|
Constructor
|
|
Copy-initializer
|
|
Destructor |
|
string pointer access for const instances |
|
Returns the number of the specified char 'car' contained in the string.
|
|
Strcat() to the existing string (printf style). Modifies and returns the resulting VDKString.
|
|
Cut the string at 'len' length. Modifies and returns the resulting VDKString.
|
|
Removes a part of the string, beginning at 'begin' on 'len' length. Modifies and returns the resulting VDKString.
|
|
Double all 'car' chars in the string (for SQL purpose). Modifies and returns the resulting VDKString.
|
|
Returns a VDKString containing a formatted date according to parameters settings. Modifies and returns the resulting VDKString.
|
|
Returns the first occurrence position of the specified char 'car' (0 based) or -1 if 'car ' not found.
|
|
Returns the last occurrence position of the specified char 'car' (0 based) or -1 if 'car ' not found.
|
|
Extract the specified part of a formatted string. Modifies and returns the resulting VDKString.
|
|
Returns true if this is an empty string meaning NULL buffer or strlen() == 0. |
|
Returns true if this is an empty string |
|
Returns the lower case VDKString after having modify it.
|
|
Pad left of string with a specified char 'car' upon 'len' length. Modifies and returns the resulting VDKString.
|
|
Removes all leading spaces. Modifies and returns the resulting VDKString. |
|
VDKString to char* casting warning ** can violate data hiding OO concept |
|
disequality operator |
|
Returns a VDKString concatenated
|
|
Returns a VDKString concatenated
|
|
cat to this
|
|
cat to this
|
|
less than operator |
|
less-equal operator |
|
Assignement operator
|
|
Assignement operator
|
|
Equality operator |
|
greater than operator |
|
greater-equal operator |
|
index operator for const instances returns NULL if ix >= size |
|
Pad right of string with a specified char 'car' upon 'len' length. Modifies and returns the resulting VDKString.
|
|
Removes all trailing spaces. Modifies and returns the resulting VDKString. |
|
as strlen() |
|
Assignment to string (printf style). Modifies and returns the resulting VDKString.
|
|
Returns the converted string to double. See atof() for details. |
|
Returns the converted string to int. See atoi() for details. |
|
Extract a part of the string beginning at 'start' upon 'len' length. Modifies and returns the resulting VDKString.
|
|
Removes all leading and trailing spaces. Modifies and returns the resulting VDKString. |
|
Returns the upper case VDKString after having modify it.
|