Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Removes all instances of the specified character from the string.
int Remove(
XCHAR chRemove
);
Parameters
- chRemove
The character to be removed from a string.
Return Value
The count of characters removed from the string. Zero if the string is not changed.
Remarks
Comparisons for the character are case sensitive.
Example
// typedef CStringT<TCHAR, StrTraitATL<TCHAR, ChTraitsCRT<TCHAR>>> CAtlString;
CAtlString str(_T("This is a test."));
int n = str.Remove(_T('t'));
ASSERT(n == 2);
ASSERT(str == _T("This is a es."));
Requirements
Header: cstringt.h