unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Barry Margolin <barmar@alum.mit.edu>
Subject: Re: Easy regexp issue
Date: Fri, 19 Jan 2007 02:49:25 -0500	[thread overview]
Message-ID: <barmar-226FDA.02492519012007@comcast.dca.giganews.com> (raw)
In-Reply-To: mailman.3295.1169191738.2155.help-gnu-emacs@gnu.org

In article <mailman.3295.1169191738.2155.help-gnu-emacs@gnu.org>,
 Kevin Rodgers <kevin.d.rodgers@gmail.com> wrote:

> HS wrote:
> > I'm finding this quite odd:
> > I want to replace all slashes for backslashes in a string, but i'm
> > having trouble!
> > 
> > Running this:
> > (replace-regexp-in-string "/" "\\" "c:/emacs/lisp/")
> > I get:
> > Debugger entered--Lisp error: (error "Invalid use of `\\' in
> > replacement text")
> > 
> > And if I try:
> > (replace-regexp-in-string "/" "\" "c:/emacs/lisp/")
> > I get:
> > Debugger entered--Lisp error: (scan-error "Unbalanced parentheses" 302
> > 1)
> > 
> > So, I don't see any other options!
> > I know the problems is there because I replace for another string then
> > it works:
> > (replace-regexp-in-string "/" "x" "c:/emacs/lisp/")
> > "c:xemacsxlispx"
> 
> See the LITERAL argument in the doc string for replace-regexp-in-string:
> 
> (replace-regexp-in-string "/" "\\" "c:/emacs/lisp/" nil t)

Or

(replace-regexp-in-string "/" "\\\\" "c:/emacs/lisp/")

This is necessary because backslash is an escape character at two 
levels: Lisp strings and regexp replacement strings (e.g. the sequence 
\1 in the replacement represents a group matched in the regexp).  So the 
replacement string needs to be \\, and you need to escape each \ in the 
string.

-- 
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
*** PLEASE don't copy me on replies, I'll read them in the group ***

  parent reply	other threads:[~2007-01-19  7:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-18 18:32 Easy regexp issue HS
2007-01-18 19:32 ` Joost Kremers
2007-01-19  7:28 ` Kevin Rodgers
     [not found] ` <mailman.3295.1169191738.2155.help-gnu-emacs@gnu.org>
2007-01-19  7:49   ` Barry Margolin [this message]
2007-01-19 13:29     ` HS
2007-01-22 19:26       ` Robert Thorpe
2007-01-20  6:09     ` Kevin Rodgers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=barmar-226FDA.02492519012007@comcast.dca.giganews.com \
    --to=barmar@alum.mit.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).