views:

199

answers:

6

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?

+1  A: 

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
ghostdog74
I think the question asked for a GUI app.
Paul D. Waite
+2  A: 

TextWrangler (free) or its big brother BBEdit (not free).

Paul R
+1  A: 

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 :)

Jeremy Huiskamp
+5  A: 

vim

:%s/pattern/replace/g
FX
+1  A: 

Search&Replace over at http://searchreplaceapp.com/

Jack
+2  A: 

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.

http://www.apple.com/downloads/macosx/development_tools/findreplaceit.html

philippon