REPLACE

function REPLACE(
  arg1: string = null,
  arg2: number = null,
  arg3: number = null,
  arg4: string = null,
): string

Description

Replaces part of a text string with a different text string.

Parameters

arg1stringdefault: null

The text where some characters will be replaced.

arg2numberdefault: null

The position of the character in the original text that will be replaced with the new text.

arg3numberdefault: null

The number of characters in the original text that will be replaced.

arg4stringdefault: null

The text that will replace characters in the original text.

Returns

string

Try It

var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.REPLACE("Online Office", 8, 6, "portal"));

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).