unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: David Kastrup <dak@gnu.org>
Subject: Re: query-replace-regexp ... "Invalid repacement string '\.'"
Date: Mon, 25 Sep 2006 09:02:54 +0200	[thread overview]
Message-ID: <85sligl97l.fsf@lola.goethe.zz> (raw)
In-Reply-To: 87hcyw78w3.fsf@trick.ulm.malte.spiess


[Oops, superseded]

Malte Spiess <i1tnews@arcor.de> writes:

> "s. keeling" <keeling@spots.ab.ca> writes:
>
>> Hi.  I was trying to make it easy on myself using q-r-r replacing
>> '[^\]\.' (not a backslash, followed by a literal dot/period) with the
>> string (sans quotes) '\.', essentially "escaping" every dot/period in
>> the file.  "M-x query-replace" had no trouble with it but M-x
>> query-replace-regexp refused, spouting the error message in the
>> subject.
>
> In a regexp for a "\" you need to escape, so write "\\". "\]" is a
> mistake.

No, it isn't.  Inside of [], \ is not special.

> A correct regexp for your intention should be
> '[^\\]\.'
>    --
>
>> So how do you replace '.' with '\.' in emacs?
>
> That should be fine.

Maybe something like

M-x query-replace-regexp RET \(^\|[^\]\)\. RET \1\\. RET

Or even

M-x query-replace-regexp RET \(\(^\|[^\]\)\(\\\\\)*\)\. RET \1\\. RET

(which considers a dot preceded by an even number of backslashes as
unescaped).

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

  reply	other threads:[~2006-09-25  7:02 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-09-24 23:56 query-replace-regexp ... "Invalid repacement string '\.'" s. keeling
2006-09-25  6:33 ` Malte Spiess
2006-09-25  7:02   ` David Kastrup [this message]
     [not found]   ` <85vencl9ar.fsf@lola.goethe.zz>
2006-09-25  7:14     ` Malte Spiess
2006-09-25  6:55 ` David Kastrup
2006-09-25  7:17   ` Malte Spiess

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=85sligl97l.fsf@lola.goethe.zz \
    --to=dak@gnu.org \
    /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).