vote up 4 vote down star

I am trying to do a search and replace with regexs.

Suppose I have a foreach(foo1.txt, foo2.txt, foo3.txt, foo4.txt). And I want to put " around each item in the list.

I thought- from the documentation - that this regex would work (foo[1-4]\.txt) -> "\&".

But it doesn't. What am I doing wrong?

flag

79% accept rate

4 Answers

vote up 3 vote down check

Note that brackets and parentheses need escaping ("extra slashes") in a search regexp, but not in the replace regexp.

The escapes are required because the lisp-parser is seeing the regex prior to the regex engine.

But, if you're writing programmatically (as opposed to interactive entry), you need to escape the escapes! ay-yi-yi....

interactive:
M-x replace-regexp RET \(obj.method(.*)\{1\}\) RET trim$(\1)

programmatic:
(replace-regexp "\\(obj.method(.*)\\{1\\}\\)" "trim$(\\1)")

the escaped parens are escaped because they are grouping, the unescaped parens are literal parens.

You might want to check out the Emacs Wiki Regex Crash Course and Steve Yegge's Effective Emacs regex section.

link|flag
Helpful, but a little scary. "escape the escapes". Meep. – Paul Nathan Jun 30 at 15:16
vote up 2 vote down

Try something like this \(foo[1-4]\.txt\)

link|flag
vote up 2 vote down

Emacs regexps always catch me out, cos they're not Perl:

\(foo[1-4]\.txt\)

You need to backslash the brackets in Emacs.

link|flag
vote up 1 vote down

You already got the right answer about the regexp, but in this case it would probably be easier to use macros instead. Put the point at the beginning of the first name, and type:

C-x ( " M-f M-f " C-f C-f C-x )

That is, start recording macro, insert quote, go two words forwards, insert quote, go two characters forwards for next element, and stop recording macro.

Then run the macro with C-x e. To repeat, just hit e again.

(In Emacs 23, you can use F3 instead of 'C-x (', and F4 instead of both 'C-x )' and 'C-x e'.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.