Uses a regular expression to search a string for a string
pattern and replace it with another. The search is
case-insensitive.
Lucee Function Reference
rereplacenocase()
Beispiel
rereplacenocase(string string,string regex,string substring,[string scope]):string
Kategorie
string,regex
Argumente
Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name | Typ | Required | Default Value | Beschreibung |
---|---|---|---|---|
string | string | Yes | A string or a variable that contains one. | |
regex | string | Yes | Regular expression to replace. | |
substring | string | Yes | replacement | |
scope | string | No | one |
- one (default): Replace the first occurrence of the regular expression. |