Method |
Description |
!= |
Determine whether two strings are not equal. This method is not supported by standard STL strings. |
!= |
Determine whether two strings are not equal. This method is not supported by standard STL strings. |
[] |
Access the item at the specified offset. |
 ~MString |
Destructor. |
+ |
Concatenation operator. |
+ |
Concatenation operator. |
= |
Assignment operator. |
= |
Assignment operator. |
= |
Assignment operator. |
== |
Equality operator. |
== |
Equality operator. |
c_str |
Return a pointer to the actual data. |
compare |
Compare this MString with a specified string.
Compare up to n0 elements of the controlled sequence beginning with position p0, or the entire controlled sequence if these arguments are not supplied, to the operand sequence. |
const char * |
Return a pointer to the actual data. |
data |
Return a pointer to the actual data. |
erase |
Remove the specified number of elements. |
find |
Find the first (lowest beginning position) subsequence in the controlled sequence, beginning on or after position pos that matches the operand sequence specified by the remaining operands. |
find |
Find the first (lowest beginning position) subsequence in the controlled sequence, beginning on or after position pos that matches the operand sequence specified by the remaining operands. |
find_first_not_of |
Find the first (lowest position element, at or after position pos, that is not the char specified. |
find_first_of |
Find the first (lowest position element, at or after position pos, that is the char specified. |
find_last_not_of |
Find the last (highest position) element of the controlled sequence, at or before the specified position, that does not match the specified character. |
find_last_of |
Find the last (highest position) element. At or before position pos, that matches the element. If it succeeds, it returns the position. Otherwise, the function returns npos. |
find_last_of |
Find the last (highest position) element. At or before position pos, that matches the element. If it succeeds, it returns the position. Otherwise, the function returns npos. |
insert |
Insert the specified characters before position p0 or before the element pointed to by it in the string. |
length |
Return the length (size) of this string. |
MString |
Constructor. |
MString |
Constructor. |
MString |
Constructor. |
MString |
Constructor. |
MString |
Constructor. |
replace |
Replace the specified characters. |
rfind |
Find the last (highest beginning position) subsequence in the controlled sequence, beginning on or before position pos, that matches the operand sequence specified by the remaining operands. |
size |
Return the length (size) of this string. |
substr |
Return a string that contains a copy of up to n characters beginning at position beginIndex. |