Function Replace

Replaces all instances of one value with another value

Replace([VALUE],[FIND],[REPLACE])

Parameters

# Type Passing Default Name Description/Comments
1 any required n/a VALUE The value to check
2 string required n/a FIND The value to find
3 string required n/a REPLACE The value to replace

Returns

The value with the replacements applied


Examples

Replace the word "Road" with "Street" in the property description

{{Replace(ALIAS.PROPDESC,"Road", "Street")}}