TextReplaceAlloc method

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

Replace text string with new string, memory must be freed

Implementation

Pointer<Char> TextReplaceAlloc(Pointer<Char> text, Pointer<Char> replace, Pointer<Char> by)
  => _TextReplaceAlloc(text, replace, by);