Replaces each paragraph (or text in cell) in the select with the corresponding text from an array of strings.
Name | Type | Default | Description |
arrString | Array | An array of replacement strings. |
|
sParaTab | string | " " | A character which is used to specify the tab in the source text. |
sParaNewLine | string | " " | A character which is used to specify the line break character in the source text. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); oWorksheet.GetRange("A1").SetValue("1"); oWorksheet.GetRange("A2").SetValue("2"); var oRange = oWorksheet.GetRange("A1:A2"); oRange.Select(); Api.ReplaceTextSmart(["Cell 1", "Cell 2"]); builder.SaveFile("xlsx", "ReplaceTextSmart.xlsx"); builder.CloseFile();