-
Notifications
You must be signed in to change notification settings - Fork 1
Replace Operator
Martin Danielsson edited this page Jul 23, 2015
·
2 revisions
The Replace
operator replaces a specific string within another string.
What | Type |
---|---|
Syntax | Replace(haystack, needle, replace) |
haystack |
any |
needle |
any |
replace |
any |
Return type | string |
The operator replaces all occurences of needle
within haystack
with replace
.
Example: Replace($CompanyName, "Ltd.", "AG")
.