emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#21995: closed (Documentation omission for regular


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#21995: closed (Documentation omission for regular expressions)
Date: Mon, 23 Nov 2015 17:03:01 +0000

Your message dated Mon, 23 Nov 2015 19:02:21 +0200
with message-id <address@hidden>
and subject line Re: bug#21995: Documentation omission for regular expressions
has caused the debbugs.gnu.org bug report #21995,
regarding Documentation omission for regular expressions
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
21995: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21995
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Documentation omission for regular expressions Date: Mon, 23 Nov 2015 12:16:59 +0000
Hi,
\& used as a replacement will substitute in the entire matched
pattern.  For example, given text

hello

and search regexp  \(.\)  with replacement  \&\&  you get

hheelloo

I have not been able to find this \& option in the regular expression
part of the emacs manual.

jan

(Emacs 24.5.1 running on Windows 2008 R2)



--- End Message ---
--- Begin Message --- Subject: Re: bug#21995: Documentation omission for regular expressions Date: Mon, 23 Nov 2015 19:02:21 +0200
> Date: Mon, 23 Nov 2015 12:16:59 +0000
> From: jan <address@hidden>
> 
> \& used as a replacement will substitute in the entire matched
> pattern.  For example, given text
> 
> hello
> 
> and search regexp  \(.\)  with replacement  \&\&  you get
> 
> hheelloo
> 
> I have not been able to find this \& option in the regular expression
> part of the emacs manual.

It's described in the node "Regexp Replace" (since it's only relevant
to replacing a matched regexp).  Quote:

  `M-x replace-regexp <RET> REGEXP <RET> NEWSTRING <RET>'
       Replace every match for REGEXP with NEWSTRING.

     In `replace-regexp', the NEWSTRING need not be constant: it can
  refer to all or part of what is matched by the REGEXP.  `\&' in
  NEWSTRING stands for the entire match being replaced.  `\D' in
  NEWSTRING, where D is a digit, stands for whatever matched the Dth
  parenthesized grouping in REGEXP.  (This is called a "back reference".)
  `\#' refers to the count of replacements already made in this command,
  as a decimal number.  In the first replacement, `\#' stands for `0'; in
  the second, for `1'; and so on.  For example,



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]