Lucee Function Reference

replace()

Replaces occurrences of substring1 in a string with substring2,
in a specified scope. The search is case-sensitive.

Example

replace(string string,any substring,[any replacement,[string scope]]):string

Category

string

Arguments

The arguments for this function are set. You can not use other arguments except the following ones.
Name Type Required Default Value Description
string string  Yes   String in which to search.  
substring any  Yes   Substring for which to search. Optionally pass a Struct with key/value pairs to do a replace all  
replacement any  No   Substring with which to replace the found matches. This arg is required if the substring1 arg is a string  
scope string  No one scope for the execution:
  • one (default): replaces only the first occurrence
  • all: replaces all occurrences