- 04 May 2024
- 1 Minute to read
- DarkLight
Replace
- Updated on 04 May 2024
- 1 Minute to read
- DarkLight
General
The Replace function replaces all occurrences of <what> in <where> with
<with_what> and returns the resulting string.
Syntax
The syntax of the Replace function is:
Replace(<where>, <what>, <with_what>)
Examples
The following Expression returns the String "Company ABC_DEF":
Replace("Company ABC/DEF", "/","_")