Replace Operator - Haufe-Lexware/haufe.no-frills-transformation GitHub Wiki

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").