Returns string with occurrences of substring1 being replaced regardless of case matching with substring2 in the specified scope.
See also Find, ReplaceList, and Replace.
ReplaceNoCase(string, substring1, substring2 [, scope ])
Any string.
String to be replaced.
String that should replace occurrences of substring1.
Defines how to complete the replace operation:
ONE
-- Replace only the first occurrence (default).ALL
-- Replace all occurrences.<!--- This example shows the use of ReplaceNoCase ---> <HTML> <HEAD> <TITLE> ReplaceNoCase Example </TITLE> </HEAD> <BODY bgcolor=silver> <H3>ReplaceNoCase Example</H3> <P>The ReplaceNoCase function returns <I>string</I> with <I>substring1</I> being replaced by <I>substring2</I> in the specified scope. The search/replace is case-insensitive. <CFIF IsDefined("FORM.MyString")> <P>Your original string, <CFOUTPUT>#FORM.MyString#</CFOUTPUT> <P>You wanted to replace the substring <CFOUTPUT>#FORM.MySubstring1# </CFOUTPUT> with the substring <CFOUTPUT>#FORM.MySubstring2#</CFOUTPUT>. <P>The result: <CFOUTPUT>#ReplaceNoCase(FORM.myString, FORM.MySubstring1, FORM.mySubString2)#</CFOUTPUT> </CFIF> ...