strremove
Removes all occurrences of a string from another.
bool strremove( char * pszString, const char *pcszSub )
Return value
Returns true if there were any occurrences of pcszSub within pszString
Example
char szBuf[] = "One fine day";
if( strremove( szBuf, "fine" ) )
{
// szBuf now == One day"
}
See also striremove