1#ifndef Cpl_Text_String_x_h_
2#define Cpl_Text_String_x_h_
48 operator char()
const;
93 bool startsWith(
const char*
string,
int startOffset )
const;
126 int indexOf(
const char* str,
int startpos )
const;
153 void cut(
int startpos,
int endpos );
171 using Cpl::Text::String::operator=;
174 using Cpl::Text::String::operator+=;
199 const void*
getRawKey(
unsigned* returnRawKeyLenPtr = 0 )
const;
This partially concrete class implements the portions of the String Api that is independent of the in...
Definition String_.h:29
Cpl::Text::String & operator=(const String &string)
Assignment.
int lastIndexOf(char c) const
See Cpl::Text::String.
bool isEmpty() const
See Cpl::Text::String.
char * getBuffer(int &maxAllowedLength)
See Cpl::Text::String.
void cut(int startpos, int endpos)
See Cpl::Text::String.
int compareIgnoreCase(const char *string) const
See Cpl::Text::String.
Cpl::Text::String & operator=(const char *string)
Assignment.
void removeLeadingSpaces()
See Cpl::Text::String.
void vformat(const char *format, va_list ap)
See Cpl::Text::String.
int compareKey(const Key &key) const
See Cpl::Container::Key.
void removeLeadingChars(const char *charsSet)
See Cpl::Text::String.
void removeTrailingSpaces()
See Cpl::Text::String.
int count(char c) const
See Cpl::Text::String.
bool operator!=(const char *string) const
See Cpl::Text::String.
int compare(const char *string) const
See Cpl::Text::String.
bool isEqualIgnoreCase(const char *string) const
See Cpl::Text::String.
void clear()
See Cpl::Text::String.
int indexOf(char c) const
See Cpl::Text::String.
void validateSizeAfterFormat(int availableLen, int formattedLen, int maxlen)
Sets the truncated flag if needed and insures string is null terminated.
void formatAppend(const char *format,...)
See Cpl::Text::String.
bool isEqualSubstring(int startpos, int endpos, const char *string) const
See Cpl::Text::String.
const char * getString() const
See Cpl::Text::String.
const char * toLower()
See Cpl::Text::String.
void removeTrailingChars(const char *charsSet)
See Cpl::Text::String.
int indexOf(const char *str, int startpos) const
See Cpl::Text::String.
void formatOpt(bool appendFlag, const char *format,...)
See Cpl::Text::String.
const char * toUpper()
See Cpl::Text::String.
void vformatAppend(const char *format, va_list ap)
See Cpl::Text::String.
void trimRight(int n)
See Cpl::Text::String.
bool startsWith(const char *string, int startOffset) const
See Cpl::Text::String.
bool startsWith(const char *string) const
See Cpl::Text::String.
const void * getRawKey(unsigned *returnRawKeyLenPtr=0) const
See Cpl::Container::Key.
bool m_truncated
Flag to track when the internal string get truncated.
Definition String_.h:32
void setChar(int atPosition, char newchar)
See Cpl::Text::String.
Cpl::Text::String & operator=(char c)
Assignment.
int replace(char targetChar, char newChar)
See Cpl::Text::String.
int indexOf(char c, int startpos) const
See Cpl::Text::String.
char * m_strPtr
Pointer to the actual internal string.
Definition String_.h:35
void format(const char *format,...)
See Cpl::Text::String.
bool operator==(const char *string) const
See Cpl::Text::String.
bool endsWith(const char *string) const
See Cpl::Text::String.
String_(char *internalStringPtr)
Constructor.
int indexOf(const char *str) const
See Cpl::Text::String.
bool truncated() const
See Cpl::Text::String.
int length() const
See Cpl::Text::String.
bool isEqualSubstringIgnoreCase(int startpos, int endpos, const char *string) const
See Cpl::Text::String.
void vformatOpt(bool appendFlag, const char *format, va_list ap)
See Cpl::Text::String.
Cpl::Text::String & operator+=(const String &string)
Append.
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20