views:

134

answers:

1

Anything one should watch out for when using CF8's CFFEED tag?

Oh, here's a list...

+1  A: 
// remove anything outside of explicit hex range (x20-x7F=standard chars,xA=carriage return,xD=line feed)    
reReplace(rssXml,"[^(!\x20-\x7F|\xA|\xD)]","","all")

Source: CFFEED - You have failed me for the last time. : Raymond Camden's ColdFusion Blog , in a comment posted By Nicholas

Henry