Preferably free tools if possible.
Also, the option of searching for multiple regular expressions and each replacing with different strings would be a bonus.
|
2
|
|
|
|
|
|
Perl. Seriously, it makes sysadmin stuff so much easier. Here's an example:
|
|||
|
|
|
|
I have the luxury of Unix and Ubuntu; In both, I use gawk for anything that requires line-by-line search and replace, especially for line-by-line for substring(s). Recently, this was the fastest for processing 1100 changes against millions of lines in hundreds of files (one directory) On Ubuntu I am a fan of regexxer
|
||
|
|
|
|
My personal favorite is PowerGrep by JGSoft. It interfaces with RegexBuddy which can help you to create and test the regular expression, automatically backs up all changes (and provides undo capabilities), provides the ability to parse multiple directories (with filename patterns), and even supports file formats such as Microsoft Word, Excel, and PDF.
|
||
|
|
|
|
I've found the tool RxFind useful (free OSS). |
||
|
|
|
|
For find-and-replace on multiple files on Windows I found rxFind to be very helpful. |
||
|
|
|
|
sed is quick and easy:
you can also join it with find:
|
||
|
|
|
Vim for the rescue (and president ;-) ). Try:
(I do love Vim's -c switch, it's magic. Or if you had already in Vim, and opened the files, e.g.:
Just issue:
Of course |
||
|
|
|
|
Emacs's directory editor has the `dired-do-query-replace-regexp' function to search for and replace a regexp over a set of marked files. |
||
|
|
|
|
Unsurprisingly, Perl does a fine job of handling this, in conjunction with a decent shell:
This has the same effect (but is more efficient, and without the race condition) as:
|
||
|
|
|
jEdit's regex search&replace in files is pretty decent. Slightly overkill if you only use it for that, though. It also doesn't support the multi-expression-replace you asked for. |
||
|
|
|
|
For Mac OS X, TextWrangler does the job. |
||
|
|
|
Textpad does a good job of it on Windows. And it's a very good editor as well. |
||||||
|
|
|
I'd go for bash + find + sed. |
||
|
|
|
|
Under Windows, I used to like WinGrep Under Ubuntu, I use Regexxer. |
||
|
|