string
Remove(string string,
char target)
Return Value
A result string after removing
indicated character.
Parameters
string – a string that needs to be processed.
target
– the character to be removed from
a string.
Remarks
Call this function to remove instances of target from the string. Comparisons for the
character are case-sensitive.
Example
The following example demonstrates
the use of Remove.