Skip to main content
Known Participant
April 6, 2011
Answered

Looping through list, searching for text

  • April 6, 2011
  • 1 reply
  • 446 views

If i am looping through a list and trying to find the text I am looking for to make a selection statement, how would i achieve that?

<cfif text="TheTextI'mLookingFor></cfif>?

    This topic has been closed for replies.
    Correct answer TiGGi

    you would use Find of FindNoCase function.

    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7e7c.html

    1 reply

    TiGGiCorrect answer
    Inspiring
    April 6, 2011

    you would use Find of FindNoCase function.

    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7e7c.html

    Known Participant
    April 6, 2011

    Thanks.