On 1/18/07, Jacob Munson <[EMAIL PROTECTED]> wrote: > > > + Extended Find/Replace with usable text input fields > > This is the one thing that I really miss from Homesite that is lacking > in CFEclipse (to be specific, in Eclipse). I've been using CFEclipse > for a couple of years now, and to this day I still open up Homesite > when I need to do complex find/replace operations.
The one in Eclipse is one line, yes it doesn't seem as good from the start. It's actually MUCH more powerful, allowing complex regular expressions (unlike the basic regexes homesite allows). Single line text box searching for me is usually something like this... line1[\n\r\f\s]+line2 And because regex's are the cat's meow and all, you can get funky... file contents: line1 line2 line3 line4 line5 Search for: (line\d+)[\n\r\f]+(line\d+) Replace with: $1 $2 Outputs: line1 line2 line3 line4 line5 Eclipse's extended find & replace is a lot better. -- nathan strutz http://www.dopefly.com/ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266928 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

