REPLACE
Replaces part of a text string with a different text string.
| Category | Text |
| Syntax | REPLACE(old_text, start_num, num_chars, new_text) |
Parameters
| Parameter | Required | Description |
|---|---|---|
old_text | Required | The text in which to replace characters. |
start_num | Required | The position of the character in old_text to start replacing. |
num_chars | Required | The number of characters to replace. |
new_text | Required | The text that replaces characters in old_text. |
Example
REPLACE("text")
Auto-generated from the EngCanvas function registry.