Name

FindNoCase

Synopsis

                  FindNoCase(substring, string [, startpos])

Returns the position of the first occurrence of substring in string. If substring isn’t found, FindNoCase( ) returns 0. An optional starting position for the search can be specifies by the startpos parameter. FindNoCase( ) performs a case-insensitive search. Example:

<cfset MyString="This is a case-insensitive example of using the FindNoCase 
function to find a substring within a string.">
<cfset MySubString="find">
   
<cfoutput>
<b>String:</b> #MyString#<br>
<b>Substring:</b> #MySubstring#
<p>The first occurrence of <b>#MySubstring#</b> is at position 
#FindNoCase(MySubstring, MyString)#.
</cfoutput>

Get Programming ColdFusion MX, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.