What's the best dedicated search-and-replace GUI tool on a Mac? "Find & Replace It!" seems decent, but they've ridiculously disabled the replace function in the demo, so I can't give it a real test before paying. Is there anything else comparable or better?
TextWrangler (free) or its big brother BBEdit (not free).
It seems that the version 1.0 of Find & Replace It! allows replacing in its trial version. Personnaly I like it for its preview feature and its scripting possibilities.
https://find-and-replace-it.com/
[update] New link
you don't have to pay a dime for anything! If your OS has bash/sed/find/etc and other *nix tools, you can do your own script to do find and replace! eg if you have sed
sed -i.bak 's/find/replace/g' *.txt
Huge overkill, but Eclipse's find and replace dialogue is pretty solid. Supports regexes with excellent syntax help.
I was going to recommend sed as well, if it hadn't been for the gui requirement :)
vim
:%s/pattern/replace/g
Search&Replace over at http://searchreplaceapp.com/
Take a look to Replacr http://replacr.com
Here you can read a review http://www.addictivetips.com/mac-os/replacr-for-os-x-batch-find-replace-text-in-txt-rtf-files/
精彩评论