IReplaceAll
BString& IReplaceAll(char replaceThis, char withThis,
BString& IReplaceAll(const char* replaceThis,
name.IReplaceAll(info.vendor, "");
str.IReplaceAll("sea", "the", 11);
str.IReplaceAll("sea", "sea", 11);
str.IReplaceAll('t', 'i');
str.IReplaceAll('t', 'T');
str.IReplaceAll('x', 'b');
str.IReplaceAll('t', 'i', 2);
str.IReplaceAll("ab", "abc");
str.IReplaceAll("tex", "the");
str.IReplaceAll("sea", "the", 11);
str.IReplaceAll("ab", NULL);