TextReplace method

Pointer<Char> TextReplace(
  1. Pointer<Char> text,
  2. Pointer<Char> replace,
  3. Pointer<Char> by
)

Implementation

Pointer<Char> TextReplace(
  Pointer<Char> text,
  Pointer<Char> replace,
  Pointer<Char> by,
) {
  return _TextReplace(text, replace, by);
}