Replace
Summary
The Replace
function searches a string and replaces all occurrences of one string with another.
Syntax
Replace(<input String>, <find String>, <replace String>) |
Return Type
String
Details
The Replace
function converts non-string input data types to String.
Examples
Replace( 'zoo' , 'z' , 'B' ) 'Boo' Replace( 'zoo' , 'zoo' , 'Baa' ) 'Baa' Replace( 'zoo' , 'o' , 'ee' ) 'zeeee' |