replace(<Text>, <Text>, <Text>) : Text
The replace function is used to substitute text fragments with other text fragments.
replace("abc", "b", "d") => "adc"
The replace() function is most commonly used for value formatting. For example, if the @Company value is ACME LLC, you can use the replace function to format the value as follows:
replace(@Company, "LLC", "Limited Liability Company") => "ACME Limited Liability Company"
Learn more about how you can get started using the Formula Field.
Type above and the results will be displayed here.