Definition in filekstring.h.
#include<string.h>#include<fbxfilesdk/components/kbaselib/kbaselib_h.h>#include<fbxfilesdk/components/kbaselib/klib/kscopedptr.h>#include<fbxfilesdk/fbxfilesdk_nsbegin.h>#include<fbxfilesdk/fbxfilesdk_nsend.h>


Go to the source code of this file.
Classes | |
| class | KString |
| Utility class to manipulate strings.More... | |
| class | KStringCompare |
| Functor class suitable for use in KMap.More... | |
Functions | |
| KFBX_DLLKString | operator+(constKString&pKStr1, constKString&pKStr2) |
| KStringconcatenation. | |
| KFBX_DLLKString | operator+(constKString&pKStr, char pChar) |
| Character concatenation. | |
| KFBX_DLLKString | operator+(constKString&pKStr, const char *pStr) |
| String concatenation. | |
| KFBX_DLLKString | operator+(constKString&pKStr, int pValue) |
| Int concatenation. | |
| KFBX_DLLKString | operator+(constKString&pKStr, float pValue) |
| Float concatenation. | |
| void | StripQuotationMarks(KString&str) |
| Strip the first and last character of the given string assuming they are quotation marks. | |
| void | RemoveChar(KString&pString, char lToRemove) |
| Remove the given char in the given string. | |
Float concatenation.
| pKStr | TheKStringbe be concatenated. | |
| pValue | The float value be be concatenated. |
Int concatenation.
| pKStr | TheKStringbe be concatenated. | |
| pValue | The int value be be concatenated. |
String concatenation.
| pKStr | TheKStringbe be concatenated. | |
| pStr | The string to be concatenated. |
Character concatenation.
| pKStr | TheKStringbe be concatenated. | |
| pChar | The character to be concatenated. |
| void RemoveChar | ( | KString& | pString, | |
| char | lToRemove | |||
| ) | [inline] |
Remove the given char in the given string.
( It is case sensitive
| pString | The given string. | |
| lToRemove | The given char ought to be removed.( It is case sensitive.) |
Definition at line642of filekstring.h.
ReferencesKString::Left(),KString::Mid(), andKString::ReverseFind().
| void StripQuotationMarks | ( | KString& | str | ) | [inline] |
Strip the first and last character of the given string assuming they are quotation marks.
| str | The given string. |
Definition at line633of filekstring.h.
ReferencesKString::GetLen(), andKString::Mid().