CStringT Members
Visual Studio .NET 2003
Constructors/Destructors
Methods
| AllocSysString | Allocates a BSTR from CStringT data. |
| AnsiToOem | Makes an in-place conversion from the ANSI character set to the OEM character set. |
| AppendFormat | Appends formatted data to an existing CStringT object. |
| Collate | Compares two strings (case sensitive, uses locale-specific information). |
| CollateNoCase | Compares two strings (case insensitive, uses locale-specific information). |
| Compare | Compares two strings (case sensitive). |
| CompareNoCase | Compares two strings (case insensitive). |
| Delete | Deletes a character or characters from a string. |
| Find | Finds a character or substring inside a larger string. |
| FindOneOf | Finds the first matching character from a set. |
| Format | Formats the string as sprintf does. |
| FormatMessage | Formats a message string. |
| FormatMessageV | Formats a message string using a variable argument list. |
| FormatV | Formats the string using a variable list of arguments. |
| GetEnvironmentVariable | Sets the string to the value of the specified environment variable. |
| Insert | Inserts a single character or a substring at the given index within the string. |
| Left | Extracts the left part of a string. |
| LoadString | Loads an existing CStringT object from a Windows resource. |
| MakeLower | Converts all the characters in this string to lowercase characters. |
| MakeReverse | Reverses the string. |
| MakeUpper | Converts all the characters in this string to uppercase characters. |
| Mid | Extracts the middle part of a string. |
| OemToAnsi | Makes an in-place conversion from the OEM character set to the ANSI character set. |
| Remove | Removes indicated characters from a string. |
| Replace | Replaces indicated characters with other characters. |
| ReverseFind | Finds a character inside a larger string; starts from the end. |
| Right | Extracts the right part of a string. |
| SetSysString | Sets an existing BSTR object with data from a CStringT object. |
| SpanExcluding | Extracts characters from the string, starting with the first character, that are not in the set of characters identified by pszCharSet. |
| SpanIncluding | Extracts a substring that contains only the characters in a set. |
| Tokenize | Extracts specified tokens in a target string. |
| Trim | Trims all leading and trailing whitespace characters from the string. |
| TrimLeft | Trims leading whitespace characters from the string. |
| TrimRight | Trims trailing whitespace characters from the string. |
Operators
| operator = | Assigns a new value to a CStringT object. |
| operator + | Concatenates two strings or a character and a string. |
| operator += | Concatenates a new string to the end of an existing string. |
| operator == | Determines if two strings are logically equal. |
| operator != | Determines if two strings are logically not equal. |
| operator < | Determines if the string on the left side of the operator is less than to the string on the right side. |
| operator > | Determines if the string on the left side of the operator is greater than to the string on the right side. |
| operator <= | Determines if the string on the left side of the operator is less than or equal to the string on the right side. |
| operator >= | Determines if the string on the left side of the operator is greater than or equal to the string on the right side. |