Thanks, I will try that out locally and make a note to apply it the next time I am in there since I already initiated the push process to get the changes into place.
On Fri, Nov 7, 2008 at 8:03 AM, Peter Boughton <[EMAIL PROTECTED]> wrote: > >we ultimately came up with this: > >"(?![</]#Variables.Word#)(\W)(#Variables.Word#)(\W)" > > > >The only downside that we found is if the word is at the very end or > >beginning of the paragraph. > > That's the \W bits you're using - they're wrong; you want a zero-width word > boundary, not a non-word character. > > Use \b(#Variables.Word#)\b and you wont need to do the workaround. > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314937 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

