> <If rss.bodycopy does not contain anything in #rejectLIST#>
>    Display this feed entry
> </cfif>

Assuming rejectLIST is a comma delimited list, run this for each entry to
test...

<cfset variables.show_entry = 1>
<cfloop list="#rejectLIST#" index="i">
        <cfif findNoCase(i, rss.bodycopy)>
                <cfset variables.show_entry = 0>
                <cfbreak>
        </cfif>
</cfloop>
<cfif variables.show_entry>
        Display here.
</cfif>

Since you're wanting to find any one of several words within a string, you
need to break the list down and search for each work individually.  If one
is found, set the "show" bit to false and break out.  This code would be
contained within your RSS output loop.


-----------------------------------
Justin D. Scott
Vice President
Sceiron Interactive, Inc.
www.sceiron.com

[EMAIL PROTECTED]
941.378.5341 - office
941.320.2402 - mobile
877.678.6011 - facsimile


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201277
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to