Suitable Text Editor

gphillipk

Registered
I've searched this forum and found some threads that partially answer my question, but I'd stil like to know which Text editor fits my needs. I need the text editor to be able to do one extra thing and that is searching thru directories and files for (e.g.) text strings. I've been using BBEdit in Demo and it does this perfectly. But its a bit expensive ($199). Anything cheaper that allows me the same functionality?
 
I was going to suggest SubEthaEdit, because it's just such a great editor - but I just checked, and it can't search directories, only open files.

It has got good regular expression searching though. You might still want to check it out- it's free, so no loss if it doesn't do what you need.
 
TextWrangler is the replacement for BBEdit Lite, which was discontinued. It has the same capabilities as the Lite version did, plus some. Price ain't bad either, a whopping $0.00 US.
 
Or if you'd like something more UNIX-like, you could learn to use the grep command.
 
Emacs is a great editor. There are a couple of carbonized versions available.
In emacs you can use the grep function like so:

ESC-x grep

change the command to grep -r 'some string' .
 
Back
Top