Ben Doom wrote: > If this is in a larger page context, I probably wouldn't use (.*) since that > would grab everything from the open anchor tag to the /last/ closing anchor > tag. I'd use > ([^<]*)
Don't, "<" is not an illegal character in an anchor. In that case use, ? to make the regex non-greedy (in CF MX at least). Jochem ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

