Followup to 2011-10-19T09:48:35Z!eliz@gnu.org.
[emacs.git] / doc / emacs / search.texi
blob8e77de0bbb44351795e754333806030c9e27c87b
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2011
3 @c   Free Software Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Search, Fixit, Display, Top
6 @chapter Searching and Replacement
7 @cindex searching
8 @cindex finding strings within text
10   Like other editors, Emacs has commands to search for occurrences of
11 a string.  Emacs also has commands to replace occurrences of a string
12 with a different string.  There are also commands that do the same
13 thing, but search for patterns instead of fixed strings.
15   You can also search multiple files under the control of a tags table
16 (@pxref{Tags Search}) or through the Dired @kbd{A} command
17 (@pxref{Operating on Files}), or ask the @code{grep} program to do it
18 (@pxref{Grep Searching}).
21 @menu
22 * Incremental Search::        Search happens as you type the string.
23 * Nonincremental Search::     Specify entire string and then search.
24 * Word Search::               Search for sequence of words.
25 * Regexp Search::             Search for match for a regexp.
26 * Regexps::                   Syntax of regular expressions.
27 * Regexp Backslash::          Regular expression constructs starting with `\'.
28 * Regexp Example::            A complex regular expression explained.
29 * Search Case::               To ignore case while searching, or not.
30 * Replace::                   Search, and replace some or all matches.
31 * Other Repeating Search::    Operating on all matches for some regexp.
32 @end menu
34 @node Incremental Search
35 @section Incremental Search
36 @cindex incremental search
37 @cindex isearch
39   The principal search command in Emacs is @dfn{incremental}: it
40 begins searching as soon as you type the first character of the search
41 string.  As you type in the search string, Emacs shows you where the
42 string (as you have typed it so far) would be found.  When you have
43 typed enough characters to identify the place you want, you can stop.
44 Depending on what you plan to do next, you may or may not need to
45 terminate the search explicitly with @key{RET}.
47 @table @kbd
48 @item C-s
49 Incremental search forward (@code{isearch-forward}).
50 @item C-r
51 Incremental search backward (@code{isearch-backward}).
52 @end table
54 @menu
55 * Basic Isearch::       Basic incremental search commands.
56 * Repeat Isearch::      Searching for the same string again.
57 * Error in Isearch::    When your string is not found.
58 * Special Isearch::     Special input in incremental search.
59 * Isearch Yank::        Commands that grab text into the search string
60                           or else edit the search string.
61 * Isearch Scroll::      Scrolling during an incremental search.
62 * Isearch Minibuffer::  Incremental search of the minibuffer history.
63 @end menu
65 @node Basic Isearch
66 @subsection Basics of Incremental Search
68 @table @kbd
69 @item C-s
70 Begin incremental search (@code{isearch-forward}).
71 @item C-r
72 Begin reverse incremental search (@code{isearch-backward}).
73 @end table
75 @kindex C-s
76 @findex isearch-forward
77   @kbd{C-s} (@code{isearch-forward}) starts a forward incremental
78 search.  It reads characters from the keyboard, and moves point just
79 past the end of the next occurrence of those characters in the buffer.
81   For instance, if you type @kbd{C-s} and then @kbd{F}, that puts the
82 cursor after the first @samp{F} that occurs in the buffer after the
83 starting point.  Then if you then type @kbd{O}, the cursor moves to
84 just after the first @samp{FO}; the @samp{F} in that @samp{FO} might
85 not be the first @samp{F} previously found.  After another @kbd{O},
86 the cursor moves to just after the first @samp{FOO}.
88 @cindex faces for highlighting search matches
89   At each step, Emacs highlights the @dfn{current match}---the buffer
90 text that matches the search string---using the @code{isearch} face
91 (@pxref{Faces}).  The current search string is also displayed in the
92 echo area.
94   If you make a mistake typing the search string, type @key{DEL}.
95 Each @key{DEL} cancels the last character of the search string.
97   When you are satisfied with the place you have reached, type
98 @key{RET}.  This stops searching, leaving the cursor where the search
99 brought it.  Also, any command not specially meaningful in searches
100 stops the searching and is then executed.  Thus, typing @kbd{C-a}
101 exits the search and then moves to the beginning of the line.
102 @key{RET} is necessary only if the next command you want to type is a
103 printing character, @key{DEL}, @key{RET}, or another character that is
104 special within searches (@kbd{C-q}, @kbd{C-w}, @kbd{C-r}, @kbd{C-s},
105 @kbd{C-y}, @kbd{M-y}, @kbd{M-r}, @kbd{M-c}, @kbd{M-e}, and some others
106 described below).
108   As a special exception, entering @key{RET} when the search string is
109 empty launches nonincremental search (@pxref{Nonincremental Search}).
111   When you exit the incremental search, it adds the original value of
112 point to the mark ring, without activating the mark; you can thus use
113 @kbd{C-u C-@key{SPC}} to return to where you were before beginning the
114 search.  @xref{Mark Ring}.  It only does this if the mark was not
115 already active.
117 @kindex C-r
118 @findex isearch-backward
119   To search backwards, use @kbd{C-r} (@code{isearch-backward}) instead
120 of @kbd{C-s} to start the search.  A backward search finds matches
121 that end before the starting point, just as a forward search finds
122 matches that begin after it.
124 @node Repeat Isearch
125 @subsection Repeating Incremental Search
127   Suppose you search forward for @samp{FOO} and find a match, but not
128 the one you expected to find: the @samp{FOO} you were aiming for
129 occurs later in the buffer.  In this event, type another @kbd{C-s} to
130 move to the next occurrence of the search string.  You can repeat this
131 any number of times.  If you overshoot, you can cancel some @kbd{C-s}
132 characters with @key{DEL}.  Similarly, each @kbd{C-r} in a backward
133 incremental search repeats the backward search.
135 @cindex lazy search highlighting
136 @vindex isearch-lazy-highlight
137   If you pause for a little while during incremental search, Emacs
138 highlights all the other possible matches for the search string that
139 are present on the screen.  This helps you anticipate where you can
140 get to by typing @kbd{C-s} or @kbd{C-r} to repeat the search.  The
141 other matches are highlighted differently from the current match,
142 using the customizable face @code{lazy-highlight} (@pxref{Faces}).  If
143 you don't like this feature, you can disable it by setting
144 @code{isearch-lazy-highlight} to @code{nil}.
146   After exiting a search, you can search for the same string again by
147 typing just @kbd{C-s C-s}.  The first @kbd{C-s} is the key that
148 invokes incremental search, and the second @kbd{C-s} means ``search
149 again.''  Similarly, @kbd{C-r C-r} searches backward for the last
150 search string.  In determining the last search string, it doesn't
151 matter whether the string was searched for with @kbd{C-s} or
152 @kbd{C-r}.
154   If you are searching forward but you realize you were looking for
155 something before the starting point, type @kbd{C-r} to switch to a
156 backward search, leaving the search string unchanged.  Similarly,
157 @kbd{C-s} in a backward search switches to a forward search.
159   If a search is failing and you ask to repeat it by typing another
160 @kbd{C-s}, it starts again from the beginning of the buffer.
161 Repeating a failing reverse search with @kbd{C-r} starts again from
162 the end.  This is called @dfn{wrapping around}, and @samp{Wrapped}
163 appears in the search prompt once this has happened.  If you keep on
164 going past the original starting point of the search, it changes to
165 @samp{Overwrapped}, which means that you are revisiting matches that
166 you have already seen.
168 @cindex search ring
169 @kindex M-n @r{(Incremental search)}
170 @kindex M-p @r{(Incremental search)}
171   To reuse earlier search strings, use the @dfn{search ring}.  The
172 commands @kbd{M-p} and @kbd{M-n} move through the ring to pick a
173 search string to reuse.  These commands leave the selected search ring
174 element in the minibuffer, where you can edit it.
176 @kindex M-e @r{(Incremental search)}
177   To edit the current search string in the minibuffer without
178 replacing it with items from the search ring, type @kbd{M-e}.  Type
179 @kbd{C-s} or @kbd{C-r} to finish editing the string and search for it.
181 @node Error in Isearch
182 @subsection Errors in Incremental Search
184   If your string is not found at all, the echo area says @samp{Failing
185 I-Search}, and the cursor moves past the place where Emacs found as
186 much of your string as it could.  Thus, if you search for @samp{FOOT},
187 and there is no @samp{FOOT}, you might see the cursor after the
188 @samp{FOO} in @samp{FOOL}.  In the echo area, the part of the search
189 string that failed to match is highlighted using the face
190 @code{isearch-fail}.
192   At this point, there are several things you can do.  If your string
193 was mistyped, you can use @key{DEL} to erase some of it and correct
194 it.  If you like the place you have found, you can type @key{RET} to
195 remain there.  Or you can type @kbd{C-g}, which removes from the
196 search string the characters that could not be found (the @samp{T} in
197 @samp{FOOT}), leaving those that were found (the @samp{FOO} in
198 @samp{FOOT}).  A second @kbd{C-g} at that point cancels the search
199 entirely, returning point to where it was when the search started.
201 @cindex quitting (in search)
202 @kindex C-g @r{(Incremental search)}
203   The quit command, @kbd{C-g}, does special things during searches;
204 just what it does depends on the status of the search.  If the search
205 has found what you specified and is waiting for input, @kbd{C-g}
206 cancels the entire search, moving the cursor back to where you started
207 the search.  If @kbd{C-g} is typed when there are characters in the
208 search string that have not been found---because Emacs is still
209 searching for them, or because it has failed to find them---then the
210 search string characters which have not been found are discarded from
211 the search string.  With them gone, the search is now successful and
212 waiting for more input, so a second @kbd{C-g} will cancel the entire
213 search.
215 @node Special Isearch
216 @subsection Special Input for Incremental Search
218   Some of the characters you type during incremental search have
219 special effects.
221   If the search string you entered contains only lower-case letters,
222 the search is case-insensitive; as long as an upper-case letter exists
223 in the search string, the search becomes case-sensitive.  If you
224 delete the upper-case character from the search string, it ceases to
225 have this effect.  @xref{Search Case}.
227   To search for a newline character, type @kbd{C-j}.
229   To search for other control characters, such as @key{control-S},
230 quote it by typing @kbd{C-q} first (@pxref{Inserting Text}).  To
231 search for non-@acronym{ASCII} characters, you can either use
232 @kbd{C-q} and enter its octal code, or use an input method
233 (@pxref{Input Methods}).  If an input method is enabled in the current
234 buffer when you start the search, you can use it in the search string
235 also.  While typing the search string, you can toggle the input method
236 with the command @kbd{C-\} (@code{isearch-toggle-input-method}).  You
237 can also turn on a non-default input method with @kbd{C-^}
238 (@code{isearch-toggle-specified-input-method}), which prompts for the
239 name of the input method.  When an input method is active during
240 incremental search, the search prompt includes the input method
241 mnemonic, like this:
243 @example
244 I-search [@var{im}]:
245 @end example
247 @noindent
248 @findex isearch-toggle-input-method
249 @findex isearch-toggle-specified-input-method
250 where @var{im} is the mnemonic of the active input method.  Any input
251 method you enable during incremental search remains enabled in the
252 current buffer afterwards.
254 @kindex M-% @r{(Incremental search)}
255   Typing @kbd{M-%} in incremental search invokes @code{query-replace}
256 or @code{query-replace-regexp} (depending on search mode) with the
257 current search string used as the string to replace.  @xref{Query
258 Replace}.
260 @kindex M-TAB @r{(Incremental search)}
261   Typing @kbd{M-@key{TAB}} in incremental search invokes
262 @code{isearch-complete}, which attempts to complete the search string
263 using the search ring as a list of completion alternatives.
264 @xref{Completion}.  In many operating systems, the @kbd{M-@key{TAB}}
265 key sequence is captured by the window manager; you then need to
266 rebind @code{isearch-complete} to another key sequence if you want to
267 use it (@pxref{Rebinding}).
269 @vindex isearch-mode-map
270   When incremental search is active, you can type @kbd{C-h C-h} to
271 access interactive help options, including a list of special
272 keybindings.  These keybindings are part of the keymap
273 @code{isearch-mode-map} (@pxref{Keymaps}).
275 @node Isearch Yank
276 @subsection Isearch Yanking
278 @kindex C-y @r{(Incremental search)}
279 @kindex M-y @r{(Incremental search)}
280 @findex isearch-yank-kill
281 @findex isearch-yank-pop
282   Within incremental search, @kbd{C-y} (@code{isearch-yank-kill})
283 appends the current kill to the search string.  @kbd{M-y}
284 (@code{isearch-yank-pop}), if called after @kbd{C-y}, replaces that
285 appended text with an earlier kill, similar to the usual @kbd{M-y}
286 (@code{yank-pop}) command (@pxref{Yanking}).  @kbd{Mouse-2} appends
287 the current X selection (@pxref{Primary Selection}).
289 @kindex C-w @r{(Incremental search)}
290 @findex isearch-yank-word-or-char
291   @kbd{C-w} (@code{isearch-yank-word-or-char}) appends the next
292 character or word at point to the search string.  This is an easy way
293 to search for another occurrence of the text at point.  (The decision
294 of whether to copy a character or a word is heuristic.)
296 @kindex M-s C-e @r{(Incremental search)}
297 @findex isearch-yank-line
298   Similarly, @kbd{M-s C-e} (@code{isearch-yank-line}) appends the rest
299 of the current line to the search string.  If point is already at the
300 end of a line, it appends the next line.
302   If the search is currently case-insensitive, both @kbd{C-w} and
303 @kbd{M-s C-e} convert the text they copy to lower case, so that the
304 search remains case-insensitive.
306 @kindex C-M-w @r{(Incremental search)}
307 @kindex C-M-y @r{(Incremental search)}
308 @findex isearch-del-char
309 @findex isearch-yank-char
310   @kbd{C-M-w} (@code{isearch-del-char}) deletes the last character
311 from the search string, and @kbd{C-M-y} (@code{isearch-yank-char})
312 appends the character after point to the the search string.  An
313 alternative method to add the character after point is to enter the
314 minibuffer with @kbd{M-e} (@pxref{Repeat Isearch}) and type @kbd{C-f}
315 at the end of the search string in the minibuffer.
317 @node Isearch Scroll
318 @subsection Scrolling During Incremental Search
320 @vindex isearch-allow-scroll
321   Normally, scrolling commands exit incremental search.  If you change
322 the variable @code{isearch-allow-scroll} to a non-@code{nil} value,
323 that enables the use of the scroll-bar, as well as keyboard scrolling
324 commands like @kbd{C-v}, @kbd{M-v}, and @kbd{C-l} (@pxref{Scrolling}).
325 This applies only to calling these commands via their bound key
326 sequences---typing @kbd{M-x} will still exit the search.  You can give
327 prefix arguments to these commands in the usual way.  This feature
328 won't let you scroll the current match out of visibility, however.
330   The @code{isearch-allow-scroll} feature also affects some other
331 commands, such as @kbd{C-x 2} (@code{split-window-vertically}) and
332 @kbd{C-x ^} (@code{enlarge-window}), which don't exactly scroll but do
333 affect where the text appears on the screen.  It applies to any
334 command whose name has a non-@code{nil} @code{isearch-scroll}
335 property.  So you can control which commands are affected by changing
336 these properties.
338   For example, to make @kbd{C-h l} usable within an incremental search
339 in all future Emacs sessions, use @kbd{C-h c} to find what command it
340 runs (@pxref{Key Help}), which is @code{view-lossage}.  Then you can
341 put the following line in your init file (@pxref{Init File}):
343 @example
344 (put 'view-lossage 'isearch-scroll t)
345 @end example
347 @noindent
348 This feature can be applied to any command that doesn't permanently
349 change point, the buffer contents, the match data, the current buffer,
350 or the selected window and frame.  The command must not itself attempt
351 an incremental search.
353 @node Isearch Minibuffer
354 @subsection Searching the Minibuffer
355 @cindex minibuffer history, searching
357 If you start an incremental search while the minibuffer is active,
358 Emacs searches the contents of the minibuffer.  Unlike searching an
359 ordinary buffer, the search string is not shown in the echo area,
360 because that is used to display the minibuffer.
362 If an incremental search fails in the minibuffer, it tries searching
363 the minibuffer history.  @xref{Minibuffer History}.  You can visualize
364 the minibuffer and its history as a series of ``pages'', with the
365 earliest history element on the first page and the current minibuffer
366 on the last page.  A forward search, @kbd{C-s}, searches forward to
367 later pages; a reverse search, @kbd{C-r}, searches backwards to
368 earlier pages.  Like in ordinary buffer search, a failing search can
369 wrap around, going from the last page to the first page or vice versa.
371 When the current match is on a history element, that history element
372 is pulled into the minibuffer.  If you exit the incremental search
373 normally (e.g. by typing @key{RET}), it remains in the minibuffer
374 afterwards.  Cancelling the search, with @kbd{C-g}, restores the
375 contents of the minibuffer when you began the search.
377 @node Nonincremental Search
378 @section Nonincremental Search
379 @cindex nonincremental search
381   Emacs also has conventional nonincremental search commands, which require
382 you to type the entire search string before searching begins.
384 @table @kbd
385 @item C-s @key{RET} @var{string} @key{RET}
386 Search for @var{string}.
387 @item C-r @key{RET} @var{string} @key{RET}
388 Search backward for @var{string}.
389 @end table
391   To start a nonincremental search, first type @kbd{C-s @key{RET}}.
392 This enters the minibuffer to read the search string; terminate the
393 string with @key{RET}, and then the search takes place.  If the string
394 is not found, the search command signals an error.
396 @findex search-forward
397 @findex search-backward
398   When you type @kbd{C-s @key{RET}}, the @kbd{C-s} invokes incremental
399 search as usual.  That command is specially programmed to invoke the
400 command for nonincremental search, @code{search-forward}, if the
401 string you specify is empty.  (Such an empty argument would otherwise
402 be useless.)  @kbd{C-r @key{RET}} does likewise, invoking the command
403 @code{search-backward}.
405 @node Word Search
406 @section Word Search
407 @cindex word search
409   A @dfn{word search} finds a sequence of words without regard to the
410 type of punctuation between them.  For instance, if you enter a search
411 string that consists of two words separated by a single space, the
412 search matches any sequence of those two words separated by one or
413 more spaces, newlines, or other punctuation characters.  This is
414 particularly useful for searching text documents, because you don't
415 have to worry whether the words you are looking for are separated by
416 newlines or spaces.
418 @table @kbd
419 @item M-s w
420 If incremental search is active, toggle word search mode
421 (@code{isearch-toggle-word}); otherwise, begin an incremental forward
422 word search (@code{isearch-forward-word}).
423 @item M-s w @key{RET} @var{words} @key{RET}
424 Search for @var{words}, using a forward nonincremental word search.
425 @item M-s w C-r @key{RET} @var{words} @key{RET}
426 Search backward for @var{words}, using a nonincremental word search.
427 @end table
429 @kindex M-s w
430 @findex isearch-forward-word
431   To begin a forward incremental word search, type @kbd{M-s w}.  If
432 incremental search is not already active, this runs the command
433 @code{isearch-forward-word}.  If incremental search is already active
434 (whether a forward or backward search), @kbd{M-s w} switches to a word
435 search while keeping the direction of the search and the current
436 search string unchanged.  You can toggle word search back off by
437 typing @kbd{M-s w} again.
439 @findex word-search-forward
440 @findex word-search-backward
441   To begin a nonincremental word search, type @kbd{M-s w @key{RET}}
442 for a forward search, or @kbd{M-s w C-r @key{RET}} for a backward search.
443 These run the commands @code{word-search-forward} and
444 @code{word-search-backward} respectively.
446   Incremental and nonincremental word searches differ slightly in the
447 way they find a match.  In a nonincremental word search, the last word
448 in the search string must exactly match a whole word.  In an
449 incremental word search, the matching is more lax: the last word in
450 the search string can match part of a word, so that the matching
451 proceeds incrementally as you type.  This additional laxity does not
452 apply to the lazy highlight, which always matches whole words.
454 @node Regexp Search
455 @section Regular Expression Search
456 @cindex regexp search
457 @cindex search for a regular expression
459   A @dfn{regular expression} (or @dfn{regexp} for short) is a pattern
460 that denotes a class of alternative strings to match.  GNU Emacs
461 provides both incremental and nonincremental ways to search for a
462 match for a regexp.  The syntax of regular expressions is explained in
463 the next section.
465 @table @kbd
466 @item C-M-s
467 Begin incremental regexp search (@code{isearch-forward-regexp}).
468 @item C-M-r
469 Begin reverse incremental regexp search (@code{isearch-backward-regexp}).
470 @end table
472 @kindex C-M-s
473 @findex isearch-forward-regexp
474 @kindex C-M-r
475 @findex isearch-backward-regexp
476   Incremental search for a regexp is done by typing @kbd{C-M-s}
477 (@code{isearch-forward-regexp}), by invoking @kbd{C-s} with a
478 prefix argument (whose value does not matter), or by typing @kbd{M-r}
479 within a forward incremental search.  This command reads a
480 search string incrementally just like @kbd{C-s}, but it treats the
481 search string as a regexp rather than looking for an exact match
482 against the text in the buffer.  Each time you add text to the search
483 string, you make the regexp longer, and the new regexp is searched
484 for.  To search backward for a regexp, use @kbd{C-M-r}
485 (@code{isearch-backward-regexp}), @kbd{C-r} with a prefix argument,
486 or @kbd{M-r} within a backward incremental search.
488   All of the special key sequences in an ordinary incremental search
489 do similar things in an incremental regexp search.  For instance,
490 typing @kbd{C-s} immediately after starting the search retrieves the
491 last incremental search regexp used and searches forward for it.
492 Incremental regexp and non-regexp searches have independent defaults.
493 They also have separate search rings, which you can access with
494 @kbd{M-p} and @kbd{M-n}.
496 @vindex search-whitespace-regexp
497   If you type @key{SPC} in incremental regexp search, it matches any
498 sequence of whitespace characters, including newlines.  If you want to
499 match just a space, type @kbd{C-q @key{SPC}}.  You can control what a
500 bare space matches by setting the variable
501 @code{search-whitespace-regexp} to the desired regexp.
503   In some cases, adding characters to the regexp in an incremental
504 regexp search can make the cursor move back and start again.  For
505 example, if you have searched for @samp{foo} and you add @samp{\|bar},
506 the cursor backs up in case the first @samp{bar} precedes the first
507 @samp{foo}.  @xref{Regexps}.
509   Forward and backward regexp search are not symmetrical, because
510 regexp matching in Emacs always operates forward, starting with the
511 beginning of the regexp.  Thus, forward regexp search scans forward,
512 trying a forward match at each possible starting position.  Backward
513 regexp search scans backward, trying a forward match at each possible
514 starting position.  These search methods are not mirror images.
516 @findex re-search-forward
517 @findex re-search-backward
518   Nonincremental search for a regexp is done with the commands
519 @code{re-search-forward} and @code{re-search-backward}.  You can
520 invoke these with @kbd{M-x}, or by way of incremental regexp search
521 with @kbd{C-M-s @key{RET}} and @kbd{C-M-r @key{RET}}.
523   If you use the incremental regexp search commands with a prefix
524 argument, they perform ordinary string search, like
525 @code{isearch-forward} and @code{isearch-backward}.  @xref{Incremental
526 Search}.
528 @node Regexps
529 @section Syntax of Regular Expressions
530 @cindex syntax of regexps
531 @cindex regular expression
532 @cindex regexp
534   This manual describes regular expression features that users
535 typically use.  @xref{Regular Expressions,,, elisp, The Emacs Lisp
536 Reference Manual}, for additional features used mainly in Lisp
537 programs.
539   Regular expressions have a syntax in which a few characters are
540 special constructs and the rest are @dfn{ordinary}.  An ordinary
541 character matches that same character and nothing else.  The special
542 characters are @samp{$^.*+?[\}.  The character @samp{]} is special if
543 it ends a character alternative (see later).  The character @samp{-}
544 is special inside a character alternative.  Any other character
545 appearing in a regular expression is ordinary, unless a @samp{\}
546 precedes it.  (When you use regular expressions in a Lisp program,
547 each @samp{\} must be doubled, see the example near the end of this
548 section.)
550   For example, @samp{f} is not a special character, so it is ordinary, and
551 therefore @samp{f} is a regular expression that matches the string
552 @samp{f} and no other string.  (It does @emph{not} match the string
553 @samp{ff}.)  Likewise, @samp{o} is a regular expression that matches
554 only @samp{o}.  (When case distinctions are being ignored, these regexps
555 also match @samp{F} and @samp{O}, but we consider this a generalization
556 of ``the same string,'' rather than an exception.)
558   Any two regular expressions @var{a} and @var{b} can be concatenated.
559 The result is a regular expression which matches a string if @var{a}
560 matches some amount of the beginning of that string and @var{b}
561 matches the rest of the string.  For example, concatenating the
562 regular expressions @samp{f} and @samp{o} gives the regular expression
563 @samp{fo}, which matches only the string @samp{fo}.  Still trivial.
564 To do something nontrivial, you need to use one of the special
565 characters.  Here is a list of them.
567 @table @asis
568 @item @kbd{.}@: @r{(Period)}
569 is a special character that matches any single character except a
570 newline.  For example, the regular expressions @samp{a.b} matches any
571 three-character string that begins with @samp{a} and ends with
572 @samp{b}.
574 @item @kbd{*}
575 is not a construct by itself; it is a postfix operator that means to
576 match the preceding regular expression repetitively any number of
577 times, as many times as possible.  Thus, @samp{o*} matches any number
578 of @samp{o}s, including no @samp{o}s.
580 @samp{*} always applies to the @emph{smallest} possible preceding
581 expression.  Thus, @samp{fo*} has a repeating @samp{o}, not a repeating
582 @samp{fo}.  It matches @samp{f}, @samp{fo}, @samp{foo}, and so on.
584 The matcher processes a @samp{*} construct by matching, immediately,
585 as many repetitions as can be found.  Then it continues with the rest
586 of the pattern.  If that fails, backtracking occurs, discarding some
587 of the matches of the @samp{*}-modified construct in case that makes
588 it possible to match the rest of the pattern.  For example, in matching
589 @samp{ca*ar} against the string @samp{caaar}, the @samp{a*} first
590 tries to match all three @samp{a}s; but the rest of the pattern is
591 @samp{ar} and there is only @samp{r} left to match, so this try fails.
592 The next alternative is for @samp{a*} to match only two @samp{a}s.
593 With this choice, the rest of the regexp matches successfully.@refill
595 @item @kbd{+}
596 is a postfix operator, similar to @samp{*} except that it must match
597 the preceding expression at least once.  Thus, @samp{ca+r} matches the
598 strings @samp{car} and @samp{caaaar} but not the string @samp{cr},
599 whereas @samp{ca*r} matches all three strings.
601 @item @kbd{?}
602 is a postfix operator, similar to @samp{*} except that it can match
603 the preceding expression either once or not at all.  Thus, @samp{ca?r}
604 matches @samp{car} or @samp{cr}, and nothing else.
606 @item @kbd{*?}, @kbd{+?}, @kbd{??}
607 @cindex non-greedy regexp matching
608 are non-@dfn{greedy} variants of the operators above.  The normal
609 operators @samp{*}, @samp{+}, @samp{?} match as much as they can, as
610 long as the overall regexp can still match.  With a following
611 @samp{?}, they will match as little as possible.
613 Thus, both @samp{ab*} and @samp{ab*?} can match the string @samp{a}
614 and the string @samp{abbbb}; but if you try to match them both against
615 the text @samp{abbb}, @samp{ab*} will match it all (the longest valid
616 match), while @samp{ab*?}  will match just @samp{a} (the shortest
617 valid match).
619 Non-greedy operators match the shortest possible string starting at a
620 given starting point; in a forward search, though, the earliest
621 possible starting point for match is always the one chosen.  Thus, if
622 you search for @samp{a.*?$} against the text @samp{abbab} followed by
623 a newline, it matches the whole string.  Since it @emph{can} match
624 starting at the first @samp{a}, it does.
626 @item @kbd{\@{@var{n}\@}}
627 is a postfix operator specifying @var{n} repetitions---that is, the
628 preceding regular expression must match exactly @var{n} times in a
629 row.  For example, @samp{x\@{4\@}} matches the string @samp{xxxx} and
630 nothing else.
632 @item @kbd{\@{@var{n},@var{m}\@}}
633 is a postfix operator specifying between @var{n} and @var{m}
634 repetitions---that is, the preceding regular expression must match at
635 least @var{n} times, but no more than @var{m} times.  If @var{m} is
636 omitted, then there is no upper limit, but the preceding regular
637 expression must match at least @var{n} times.@* @samp{\@{0,1\@}} is
638 equivalent to @samp{?}. @* @samp{\@{0,\@}} is equivalent to
639 @samp{*}. @* @samp{\@{1,\@}} is equivalent to @samp{+}.
641 @item @kbd{[ @dots{} ]}
642 is a @dfn{character set}, beginning with @samp{[} and terminated by
643 @samp{]}.
645 In the simplest case, the characters between the two brackets are what
646 this set can match.  Thus, @samp{[ad]} matches either one @samp{a} or
647 one @samp{d}, and @samp{[ad]*} matches any string composed of just
648 @samp{a}s and @samp{d}s (including the empty string).  It follows that
649 @samp{c[ad]*r} matches @samp{cr}, @samp{car}, @samp{cdr},
650 @samp{caddaar}, etc.
652 You can also include character ranges in a character set, by writing the
653 starting and ending characters with a @samp{-} between them.  Thus,
654 @samp{[a-z]} matches any lower-case @acronym{ASCII} letter.  Ranges may be
655 intermixed freely with individual characters, as in @samp{[a-z$%.]},
656 which matches any lower-case @acronym{ASCII} letter or @samp{$}, @samp{%} or
657 period.
659 You can also include certain special @dfn{character classes} in a
660 character set.  A @samp{[:} and balancing @samp{:]} enclose a
661 character class inside a character alternative.  For instance,
662 @samp{[[:alnum:]]} matches any letter or digit.  @xref{Char Classes,,,
663 elisp, The Emacs Lisp Reference Manual}, for a list of character
664 classes.
666 To include a @samp{]} in a character set, you must make it the first
667 character.  For example, @samp{[]a]} matches @samp{]} or @samp{a}.  To
668 include a @samp{-}, write @samp{-} as the first or last character of the
669 set, or put it after a range.  Thus, @samp{[]-]} matches both @samp{]}
670 and @samp{-}.
672 To include @samp{^} in a set, put it anywhere but at the beginning of
673 the set.  (At the beginning, it complements the set---see below.)
675 When you use a range in case-insensitive search, you should write both
676 ends of the range in upper case, or both in lower case, or both should
677 be non-letters.  The behavior of a mixed-case range such as @samp{A-z}
678 is somewhat ill-defined, and it may change in future Emacs versions.
680 @item @kbd{[^ @dots{} ]}
681 @samp{[^} begins a @dfn{complemented character set}, which matches any
682 character except the ones specified.  Thus, @samp{[^a-z0-9A-Z]} matches
683 all characters @emph{except} @acronym{ASCII} letters and digits.
685 @samp{^} is not special in a character set unless it is the first
686 character.  The character following the @samp{^} is treated as if it
687 were first (in other words, @samp{-} and @samp{]} are not special there).
689 A complemented character set can match a newline, unless newline is
690 mentioned as one of the characters not to match.  This is in contrast to
691 the handling of regexps in programs such as @code{grep}.
693 @item @kbd{^}
694 is a special character that matches the empty string, but only at the
695 beginning of a line in the text being matched.  Otherwise it fails to
696 match anything.  Thus, @samp{^foo} matches a @samp{foo} that occurs at
697 the beginning of a line.
699 For historical compatibility reasons, @samp{^} can be used with this
700 meaning only at the beginning of the regular expression, or after
701 @samp{\(} or @samp{\|}.
703 @item @kbd{$}
704 is similar to @samp{^} but matches only at the end of a line.  Thus,
705 @samp{x+$} matches a string of one @samp{x} or more at the end of a line.
707 For historical compatibility reasons, @samp{$} can be used with this
708 meaning only at the end of the regular expression, or before @samp{\)}
709 or @samp{\|}.
711 @item @kbd{\}
712 has two functions: it quotes the special characters (including
713 @samp{\}), and it introduces additional special constructs.
715 Because @samp{\} quotes special characters, @samp{\$} is a regular
716 expression that matches only @samp{$}, and @samp{\[} is a regular
717 expression that matches only @samp{[}, and so on.
719 See the following section for the special constructs that begin
720 with @samp{\}.
721 @end table
723   Note: for historical compatibility, special characters are treated as
724 ordinary ones if they are in contexts where their special meanings make no
725 sense.  For example, @samp{*foo} treats @samp{*} as ordinary since there is
726 no preceding expression on which the @samp{*} can act.  It is poor practice
727 to depend on this behavior; it is better to quote the special character anyway,
728 regardless of where it appears.
730 As a @samp{\} is not special inside a character alternative, it can
731 never remove the special meaning of @samp{-} or @samp{]}.  So you
732 should not quote these characters when they have no special meaning
733 either.  This would not clarify anything, since backslashes can
734 legitimately precede these characters where they @emph{have} special
735 meaning, as in @samp{[^\]} (@code{"[^\\]"} for Lisp string syntax),
736 which matches any single character except a backslash.
738 @node Regexp Backslash
739 @section Backslash in Regular Expressions
741   For the most part, @samp{\} followed by any character matches only
742 that character.  However, there are several exceptions: two-character
743 sequences starting with @samp{\} that have special meanings.  The
744 second character in the sequence is always an ordinary character when
745 used on its own.  Here is a table of @samp{\} constructs.
747 @table @kbd
748 @item \|
749 specifies an alternative.  Two regular expressions @var{a} and @var{b}
750 with @samp{\|} in between form an expression that matches some text if
751 either @var{a} matches it or @var{b} matches it.  It works by trying to
752 match @var{a}, and if that fails, by trying to match @var{b}.
754 Thus, @samp{foo\|bar} matches either @samp{foo} or @samp{bar}
755 but no other string.@refill
757 @samp{\|} applies to the largest possible surrounding expressions.  Only a
758 surrounding @samp{\( @dots{} \)} grouping can limit the grouping power of
759 @samp{\|}.@refill
761 Full backtracking capability exists to handle multiple uses of @samp{\|}.
763 @item \( @dots{} \)
764 is a grouping construct that serves three purposes:
766 @enumerate
767 @item
768 To enclose a set of @samp{\|} alternatives for other operations.
769 Thus, @samp{\(foo\|bar\)x} matches either @samp{foox} or @samp{barx}.
771 @item
772 To enclose a complicated expression for the postfix operators @samp{*},
773 @samp{+} and @samp{?} to operate on.  Thus, @samp{ba\(na\)*} matches
774 @samp{bananana}, etc., with any (zero or more) number of @samp{na}
775 strings.@refill
777 @item
778 To record a matched substring for future reference.
779 @end enumerate
781 This last application is not a consequence of the idea of a
782 parenthetical grouping; it is a separate feature that is assigned as a
783 second meaning to the same @samp{\( @dots{} \)} construct.  In practice
784 there is usually no conflict between the two meanings; when there is
785 a conflict, you can use a ``shy'' group.
787 @item \(?: @dots{} \)
788 @cindex shy group, in regexp
789 specifies a ``shy'' group that does not record the matched substring;
790 you can't refer back to it with @samp{\@var{d}}.  This is useful
791 in mechanically combining regular expressions, so that you
792 can add groups for syntactic purposes without interfering with
793 the numbering of the groups that are meant to be referred to.
795 @item \@var{d}
796 @cindex back reference, in regexp
797 matches the same text that matched the @var{d}th occurrence of a
798 @samp{\( @dots{} \)} construct.  This is called a @dfn{back
799 reference}.
801 After the end of a @samp{\( @dots{} \)} construct, the matcher remembers
802 the beginning and end of the text matched by that construct.  Then,
803 later on in the regular expression, you can use @samp{\} followed by the
804 digit @var{d} to mean ``match the same text matched the @var{d}th time
805 by the @samp{\( @dots{} \)} construct.''
807 The strings matching the first nine @samp{\( @dots{} \)} constructs
808 appearing in a regular expression are assigned numbers 1 through 9 in
809 the order that the open-parentheses appear in the regular expression.
810 So you can use @samp{\1} through @samp{\9} to refer to the text matched
811 by the corresponding @samp{\( @dots{} \)} constructs.
813 For example, @samp{\(.*\)\1} matches any newline-free string that is
814 composed of two identical halves.  The @samp{\(.*\)} matches the first
815 half, which may be anything, but the @samp{\1} that follows must match
816 the same exact text.
818 If a particular @samp{\( @dots{} \)} construct matches more than once
819 (which can easily happen if it is followed by @samp{*}), only the last
820 match is recorded.
822 @item \`
823 matches the empty string, but only at the beginning of the string or
824 buffer (or its accessible portion) being matched against.
826 @item \'
827 matches the empty string, but only at the end of the string or buffer
828 (or its accessible portion) being matched against.
830 @item \=
831 matches the empty string, but only at point.
833 @item \b
834 matches the empty string, but only at the beginning or
835 end of a word.  Thus, @samp{\bfoo\b} matches any occurrence of
836 @samp{foo} as a separate word.  @samp{\bballs?\b} matches
837 @samp{ball} or @samp{balls} as a separate word.@refill
839 @samp{\b} matches at the beginning or end of the buffer
840 regardless of what text appears next to it.
842 @item \B
843 matches the empty string, but @emph{not} at the beginning or
844 end of a word.
846 @item \<
847 matches the empty string, but only at the beginning of a word.
848 @samp{\<} matches at the beginning of the buffer only if a
849 word-constituent character follows.
851 @item \>
852 matches the empty string, but only at the end of a word.  @samp{\>}
853 matches at the end of the buffer only if the contents end with a
854 word-constituent character.
856 @item \w
857 matches any word-constituent character.  The syntax table determines
858 which characters these are.  @xref{Syntax Tables,, Syntax Tables,
859 elisp, The Emacs Lisp Reference Manual}.
861 @item \W
862 matches any character that is not a word-constituent.
864 @item \_<
865 matches the empty string, but only at the beginning of a symbol.
866 A symbol is a sequence of one or more symbol-constituent characters.
867 A symbol-constituent character is a character whose syntax is either
868 @samp{w} or @samp{_}.  @samp{\_<} matches at the beginning of the
869 buffer only if a symbol-constituent character follows.
871 @item \_>
872 matches the empty string, but only at the end of a symbol.  @samp{\_>}
873 matches at the end of the buffer only if the contents end with a
874 symbol-constituent character.
876 @item \s@var{c}
877 matches any character whose syntax is @var{c}.  Here @var{c} is a
878 character that designates a particular syntax class: thus, @samp{w}
879 for word constituent, @samp{-} or @samp{ } for whitespace, @samp{.}
880 for ordinary punctuation, etc.  @xref{Syntax Tables,, Syntax Tables,
881 elisp, The Emacs Lisp Reference Manual}.
883 @item \S@var{c}
884 matches any character whose syntax is not @var{c}.
886 @cindex categories of characters
887 @cindex characters which belong to a specific language
888 @findex describe-categories
889 @item \c@var{c}
890 matches any character that belongs to the category @var{c}.  For
891 example, @samp{\cc} matches Chinese characters, @samp{\cg} matches
892 Greek characters, etc.  For the description of the known categories,
893 type @kbd{M-x describe-categories @key{RET}}.
895 @item \C@var{c}
896 matches any character that does @emph{not} belong to category
897 @var{c}.
898 @end table
900   The constructs that pertain to words and syntax are controlled by
901 the setting of the syntax table.  @xref{Syntax Tables,, Syntax Tables,
902 elisp, The Emacs Lisp Reference Manual}.
904 @node Regexp Example
905 @section Regular Expression Example
907   Here is an example of a regexp---similar to the regexp that Emacs
908 uses, by default, to recognize the end of a sentence, not including
909 the following space (i.e., the variable @code{sentence-end-base}):
911 @example
912 @verbatim
913 [.?!][]\"')}]*
914 @end verbatim
915 @end example
917 @noindent
918 This contains two parts in succession: a character set matching
919 period, @samp{?}, or @samp{!}, and a character set matching
920 close-brackets, quotes, or parentheses, repeated zero or more times.
922 @node Search Case
923 @section Searching and Case
925   Searches in Emacs normally ignore the case of the text they are
926 searching through, if you specify the text in lower case.  Thus, if
927 you specify searching for @samp{foo}, then @samp{Foo} and @samp{foo}
928 also match.  Regexps, and in particular character sets, behave
929 likewise: @samp{[ab]} matches @samp{a} or @samp{A} or @samp{b} or
930 @samp{B}.@refill
932   An upper-case letter anywhere in the incremental search string makes
933 the search case-sensitive.  Thus, searching for @samp{Foo} does not find
934 @samp{foo} or @samp{FOO}.  This applies to regular expression search as
935 well as to string search.  The effect ceases if you delete the
936 upper-case letter from the search string.
938   Typing @kbd{M-c} within an incremental search toggles the case
939 sensitivity of that search.  The effect does not extend beyond the
940 current incremental search to the next one, but it does override the
941 effect of adding or removing an upper-case letter in the current
942 search.
944 @vindex case-fold-search
945   If you set the variable @code{case-fold-search} to @code{nil}, then
946 all letters must match exactly, including case.  This is a per-buffer
947 variable; altering the variable normally affects only the current buffer,
948 unless you change its default value.  @xref{Locals}.
949 This variable applies to nonincremental searches also, including those
950 performed by the replace commands (@pxref{Replace}) and the minibuffer
951 history matching commands (@pxref{Minibuffer History}).
953   Several related variables control case-sensitivity of searching and
954 matching for specific commands or activities.  For instance,
955 @code{tags-case-fold-search} controls case sensitivity for
956 @code{find-tag}.  To find these variables, do @kbd{M-x
957 apropos-variable @key{RET} case-fold-search @key{RET}}.
959 @node Replace
960 @section Replacement Commands
961 @cindex replacement
962 @cindex search-and-replace commands
963 @cindex string substitution
964 @cindex global substitution
966   Emacs provides several commands for performing search-and-replace
967 operations.  In addition to the simple @kbd{M-x replace-string}
968 command, there is @kbd{M-%} (@code{query-replace}), which presents
969 each occurrence of the pattern and asks you whether to replace it.
971   The replace commands normally operate on the text from point to the
972 end of the buffer.  When the region is active, they operate on it
973 instead (@pxref{Mark}).  The basic replace commands replace one
974 @dfn{search string} (or regexp) with one @dfn{replacement string}.  It
975 is possible to perform several replacements in parallel, using the
976 command @code{expand-region-abbrevs} (@pxref{Expanding Abbrevs}).
978 @menu
979 * Unconditional Replace::   Replacing all matches for a string.
980 * Regexp Replace::          Replacing all matches for a regexp.
981 * Replacement and Case::    How replacements preserve case of letters.
982 * Query Replace::           How to use querying.
983 @end menu
985 @node Unconditional Replace, Regexp Replace, Replace, Replace
986 @subsection Unconditional Replacement
987 @findex replace-string
989 @table @kbd
990 @item M-x replace-string @key{RET} @var{string} @key{RET} @var{newstring} @key{RET}
991 Replace every occurrence of @var{string} with @var{newstring}.
992 @end table
994   To replace every instance of @samp{foo} after point with @samp{bar},
995 use the command @kbd{M-x replace-string} with the two arguments
996 @samp{foo} and @samp{bar}.  Replacement happens only in the text after
997 point, so if you want to cover the whole buffer you must go to the
998 beginning first.  All occurrences up to the end of the buffer are
999 replaced; to limit replacement to part of the buffer, activate the
1000 region around that part.  When the region is active, replacement is
1001 limited to the region (@pxref{Mark}).
1003   When @code{replace-string} exits, it leaves point at the last
1004 occurrence replaced.  It adds the prior position of point (where the
1005 @code{replace-string} command was issued) to the mark ring, without
1006 activating the mark; use @kbd{C-u C-@key{SPC}} to move back there.
1007 @xref{Mark Ring}.
1009   A prefix argument restricts replacement to matches that are
1010 surrounded by word boundaries.
1012   @xref{Replacement and Case}, for details about case-sensitivity in
1013 replace commands.
1015 @node Regexp Replace, Replacement and Case, Unconditional Replace, Replace
1016 @subsection Regexp Replacement
1017 @findex replace-regexp
1019   The @kbd{M-x replace-string} command replaces exact matches for a
1020 single string.  The similar command @kbd{M-x replace-regexp} replaces
1021 any match for a specified pattern.
1023 @table @kbd
1024 @item M-x replace-regexp @key{RET} @var{regexp} @key{RET} @var{newstring} @key{RET}
1025 Replace every match for @var{regexp} with @var{newstring}.
1026 @end table
1028 @cindex back reference, in regexp replacement
1029   In @code{replace-regexp}, the @var{newstring} need not be constant:
1030 it can refer to all or part of what is matched by the @var{regexp}.
1031 @samp{\&} in @var{newstring} stands for the entire match being
1032 replaced.  @samp{\@var{d}} in @var{newstring}, where @var{d} is a
1033 digit, stands for whatever matched the @var{d}th parenthesized
1034 grouping in @var{regexp}.  (This is called a ``back reference.'')
1035 @samp{\#} refers to the count of replacements already made in this
1036 command, as a decimal number.  In the first replacement, @samp{\#}
1037 stands for @samp{0}; in the second, for @samp{1}; and so on.  For
1038 example,
1040 @example
1041 M-x replace-regexp @key{RET} c[ad]+r @key{RET} \&-safe @key{RET}
1042 @end example
1044 @noindent
1045 replaces (for example) @samp{cadr} with @samp{cadr-safe} and @samp{cddr}
1046 with @samp{cddr-safe}.
1048 @example
1049 M-x replace-regexp @key{RET} \(c[ad]+r\)-safe @key{RET} \1 @key{RET}
1050 @end example
1052 @noindent
1053 performs the inverse transformation.  To include a @samp{\} in the
1054 text to replace with, you must enter @samp{\\}.
1056   If you want to enter part of the replacement string by hand each
1057 time, use @samp{\?} in the replacement string.  Each replacement will
1058 ask you to edit the replacement string in the minibuffer, putting
1059 point where the @samp{\?} was.
1061   The remainder of this subsection is intended for specialized tasks
1062 and requires knowledge of Lisp.  Most readers can skip it.
1064   You can use Lisp expressions to calculate parts of the
1065 replacement string.  To do this, write @samp{\,} followed by the
1066 expression in the replacement string.  Each replacement calculates the
1067 value of the expression and converts it to text without quoting (if
1068 it's a string, this means using the string's contents), and uses it in
1069 the replacement string in place of the expression itself.  If the
1070 expression is a symbol, one space in the replacement string after the
1071 symbol name goes with the symbol name, so the value replaces them
1072 both.
1074   Inside such an expression, you can use some special sequences.
1075 @samp{\&} and @samp{\@var{n}} refer here, as usual, to the entire
1076 match as a string, and to a submatch as a string.  @var{n} may be
1077 multiple digits, and the value of @samp{\@var{n}} is @code{nil} if
1078 subexpression @var{n} did not match.  You can also use @samp{\#&} and
1079 @samp{\#@var{n}} to refer to those matches as numbers (this is valid
1080 when the match or submatch has the form of a numeral).  @samp{\#} here
1081 too stands for the number of already-completed replacements.
1083   Repeating our example to exchange @samp{x} and @samp{y}, we can thus
1084 do it also this way:
1086 @example
1087 M-x replace-regexp @key{RET} \(x\)\|y @key{RET}
1088 \,(if \1 "y" "x") @key{RET}
1089 @end example
1091   For computing replacement strings for @samp{\,}, the @code{format}
1092 function is often useful (@pxref{Formatting Strings,,, elisp, The Emacs
1093 Lisp Reference Manual}).  For example, to add consecutively numbered
1094 strings like @samp{ABC00042} to columns 73 @w{to 80} (unless they are
1095 already occupied), you can use
1097 @example
1098 M-x replace-regexp @key{RET} ^.\@{0,72\@}$ @key{RET}
1099 \,(format "%-72sABC%05d" \& \#) @key{RET}
1100 @end example
1102 @node Replacement and Case, Query Replace, Regexp Replace, Replace
1103 @subsection Replace Commands and Case
1105   If the first argument of a replace command is all lower case, the
1106 command ignores case while searching for occurrences to
1107 replace---provided @code{case-fold-search} is non-@code{nil}.  If
1108 @code{case-fold-search} is set to @code{nil}, case is always significant
1109 in all searches.
1111 @vindex case-replace
1112   In addition, when the @var{newstring} argument is all or partly lower
1113 case, replacement commands try to preserve the case pattern of each
1114 occurrence.  Thus, the command
1116 @example
1117 M-x replace-string @key{RET} foo @key{RET} bar @key{RET}
1118 @end example
1120 @noindent
1121 replaces a lower case @samp{foo} with a lower case @samp{bar}, an
1122 all-caps @samp{FOO} with @samp{BAR}, and a capitalized @samp{Foo} with
1123 @samp{Bar}.  (These three alternatives---lower case, all caps, and
1124 capitalized, are the only ones that @code{replace-string} can
1125 distinguish.)
1127   If upper-case letters are used in the replacement string, they remain
1128 upper case every time that text is inserted.  If upper-case letters are
1129 used in the first argument, the second argument is always substituted
1130 exactly as given, with no case conversion.  Likewise, if either
1131 @code{case-replace} or @code{case-fold-search} is set to @code{nil},
1132 replacement is done without case conversion.
1134 @node Query Replace,, Replacement and Case, Replace
1135 @subsection Query Replace
1136 @cindex query replace
1138 @table @kbd
1139 @item M-% @var{string} @key{RET} @var{newstring} @key{RET}
1140 Replace some occurrences of @var{string} with @var{newstring}.
1141 @item C-M-% @var{regexp} @key{RET} @var{newstring} @key{RET}
1142 Replace some matches for @var{regexp} with @var{newstring}.
1143 @end table
1145 @kindex M-%
1146 @findex query-replace
1147   If you want to change only some of the occurrences of @samp{foo} to
1148 @samp{bar}, not all of them, use @kbd{M-%} (@code{query-replace}).
1149 This command finds occurrences of @samp{foo} one by one, displays each
1150 occurrence and asks you whether to replace it.  Aside from querying,
1151 @code{query-replace} works just like @code{replace-string}
1152 (@pxref{Unconditional Replace}).  In particular, it preserves case
1153 provided @code{case-replace} is non-@code{nil}, as it normally is
1154 (@pxref{Replacement and Case}).  A numeric argument means to consider
1155 only occurrences that are bounded by word-delimiter characters.
1157 @kindex C-M-%
1158 @findex query-replace-regexp
1159   @kbd{C-M-%} performs regexp search and replace (@code{query-replace-regexp}).
1160 It works like @code{replace-regexp} except that it queries
1161 like @code{query-replace}.
1163 @cindex faces for highlighting query replace
1164   These commands highlight the current match using the face
1165 @code{query-replace}.  They highlight other matches using
1166 @code{lazy-highlight} just like incremental search (@pxref{Incremental
1167 Search}).  By default, @code{query-replace-regexp} will show the
1168 substituted replacement string for the current match in the
1169 minibuffer.  If you want to keep special sequences @samp{\&} and
1170 @samp{\@var{n}} unexpanded, customize
1171 @code{query-replace-show-replacement} variable.
1173   The characters you can type when you are shown a match for the string
1174 or regexp are:
1176 @ignore @c Not worth it.
1177 @kindex SPC @r{(query-replace)}
1178 @kindex DEL @r{(query-replace)}
1179 @kindex , @r{(query-replace)}
1180 @kindex RET @r{(query-replace)}
1181 @kindex . @r{(query-replace)}
1182 @kindex ! @r{(query-replace)}
1183 @kindex ^ @r{(query-replace)}
1184 @kindex C-r @r{(query-replace)}
1185 @kindex C-w @r{(query-replace)}
1186 @kindex C-l @r{(query-replace)}
1187 @end ignore
1189 @c WideCommands
1190 @table @kbd
1191 @item @key{SPC}
1192 to replace the occurrence with @var{newstring}.
1194 @item @key{DEL}
1195 to skip to the next occurrence without replacing this one.
1197 @item , @r{(Comma)}
1198 to replace this occurrence and display the result.  You are then asked
1199 for another input character to say what to do next.  Since the
1200 replacement has already been made, @key{DEL} and @key{SPC} are
1201 equivalent in this situation; both move to the next occurrence.
1203 You can type @kbd{C-r} at this point (see below) to alter the replaced
1204 text.  You can also type @kbd{C-x u} to undo the replacement; this exits
1205 the @code{query-replace}, so if you want to do further replacement you
1206 must use @kbd{C-x @key{ESC} @key{ESC} @key{RET}} to restart
1207 (@pxref{Repetition}).
1209 @item @key{RET}
1210 to exit without doing any more replacements.
1212 @item .@: @r{(Period)}
1213 to replace this occurrence and then exit without searching for more
1214 occurrences.
1216 @item !
1217 to replace all remaining occurrences without asking again.
1219 @item ^
1220 to go back to the position of the previous occurrence (or what used to
1221 be an occurrence), in case you changed it by mistake or want to
1222 reexamine it.
1224 @item C-r
1225 to enter a recursive editing level, in case the occurrence needs to be
1226 edited rather than just replaced with @var{newstring}.  When you are
1227 done, exit the recursive editing level with @kbd{C-M-c} to proceed to
1228 the next occurrence.  @xref{Recursive Edit}.
1230 @item C-w
1231 to delete the occurrence, and then enter a recursive editing level as in
1232 @kbd{C-r}.  Use the recursive edit to insert text to replace the deleted
1233 occurrence of @var{string}.  When done, exit the recursive editing level
1234 with @kbd{C-M-c} to proceed to the next occurrence.
1236 @item e
1237 to edit the replacement string in the minibuffer.  When you exit the
1238 minibuffer by typing @key{RET}, the minibuffer contents replace the
1239 current occurrence of the pattern.  They also become the new
1240 replacement string for any further occurrences.
1242 @item C-l
1243 to redisplay the screen.  Then you must type another character to
1244 specify what to do with this occurrence.
1246 @item C-h
1247 to display a message summarizing these options.  Then you must type
1248 another character to specify what to do with this occurrence.
1249 @end table
1251   Some other characters are aliases for the ones listed above: @kbd{y},
1252 @kbd{n} and @kbd{q} are equivalent to @key{SPC}, @key{DEL} and
1253 @key{RET}.
1255   Aside from this, any other character exits the @code{query-replace},
1256 and is then reread as part of a key sequence.  Thus, if you type
1257 @kbd{C-k}, it exits the @code{query-replace} and then kills to end of
1258 line.
1260   To restart a @code{query-replace} once it is exited, use @kbd{C-x
1261 @key{ESC} @key{ESC}}, which repeats the @code{query-replace} because it
1262 used the minibuffer to read its arguments.  @xref{Repetition, C-x ESC
1263 ESC}.
1265   @xref{Operating on Files}, for the Dired @kbd{Q} command which
1266 performs query replace on selected files.  See also @ref{Transforming
1267 File Names}, for Dired commands to rename, copy, or link files by
1268 replacing regexp matches in file names.
1270 @node Other Repeating Search
1271 @section Other Search-and-Loop Commands
1273   Here are some other commands that find matches for a regular
1274 expression.  They all ignore case in matching, if the pattern contains
1275 no upper-case letters and @code{case-fold-search} is non-@code{nil}.
1276 Aside from @code{occur} and its variants, all operate on the text from
1277 point to the end of the buffer, or on the region if it is active.
1279 @findex list-matching-lines
1280 @findex occur
1281 @findex multi-occur
1282 @findex multi-occur-in-matching-buffers
1283 @findex how-many
1284 @findex flush-lines
1285 @findex keep-lines
1287 @table @kbd
1288 @item M-x multi-isearch-buffers
1289 Prompt for one or more buffer names, ending with @key{RET}; then,
1290 begin a multi-buffer incremental search in those buffers.  (If the
1291 search fails in one buffer, the next @kbd{C-s} tries searching the
1292 next specified buffer, and so forth.)  With a prefix argument, prompt
1293 for a regexp and begin a multi-buffer incremental search in buffers
1294 matching that regexp.
1296 @item M-x multi-isearch-buffers-regexp
1297 This command is just like @code{multi-isearch-buffers}, except it
1298 performs an incremental regexp search.
1300 @cindex Occur mode
1301 @cindex mode, Occur
1302 @item M-x occur
1303 Prompt for a regexp, and display a list showing each line in the
1304 buffer that contains a match for it.  To limit the search to part of
1305 the buffer, narrow to that part (@pxref{Narrowing}).  A numeric
1306 argument @var{n} specifies that @var{n} lines of context are to be
1307 displayed before and after each matching line.
1309 @kindex RET @r{(Occur mode)}
1310 @kindex o @r{(Occur mode)}
1311 @kindex C-o @r{(Occur mode)}
1312 In the @samp{*Occur*} buffer, you can click on each entry, or move
1313 point there and type @key{RET}, to visit the corresponding position in
1314 the buffer that was searched.  @kbd{o} and @kbd{C-o} display the match
1315 in another window; @kbd{C-o} does not select it.  Alternatively, you
1316 can use the @kbd{C-x `} (@code{next-error}) command to visit the
1317 occurrences one by one (@pxref{Compilation Mode}).
1319 @cindex Occur Edit mode
1320 @cindex mode, Occur Edit
1321 Typing @kbd{e} in the @samp{*Occur*} buffer switches to Occur Edit
1322 mode, in which edits made to the entries are also applied to the text
1323 in the originating buffer.  Type @kbd{C-c C-c} to return to Occur
1324 mode.
1326 The command @kbd{M-x list-matching-lines} is a synonym for @kbd{M-x
1327 occur}.
1329 @kindex M-s o
1330 @item M-s o
1331 Run @code{occur} using the search string of the last incremental
1332 string search.  You can also run @kbd{M-s o} when an incremental
1333 search is active; this uses the current search string.
1335 @item M-x multi-occur
1336 This command is just like @code{occur}, except it is able to search
1337 through multiple buffers.  It asks you to specify the buffer names one
1338 by one.
1340 @item M-x multi-occur-in-matching-buffers
1341 This command is similar to @code{multi-occur}, except the buffers to
1342 search are specified by a regular expression that matches visited file
1343 names.  With a prefix argument, it uses the regular expression to
1344 match buffer names instead.
1346 @item M-x how-many
1347 Prompt for a regexp, and print the number of matches for it in the
1348 buffer after point.  If the region is active, this operates on the
1349 region instead.
1351 @item M-x flush-lines
1352 Prompt for a regexp, and delete each line that contains a match for
1353 it, operating on the text after point.  This command deletes the
1354 current line if it contains a match starting after point.  If the
1355 region is active, it operates on the region instead; if a line
1356 partially contained in the region contains a match entirely contained
1357 in the region, it is deleted.
1359 If a match is split across lines, @code{flush-lines} deletes all those
1360 lines.  It deletes the lines before starting to look for the next
1361 match; hence, it ignores a match starting on the same line at which
1362 another match ended.
1364 @item M-x keep-lines
1365 Prompt for a regexp, and delete each line that @emph{does not} contain
1366 a match for it, operating on the text after point.  If point is not at
1367 the beginning of a line, this command always keeps the current line.
1368 If the region is active, the command operates on the region instead;
1369 it never deletes lines that are only partially contained in the region
1370 (a newline that ends a line counts as part of that line).
1372 If a match is split across lines, this command keeps all those lines.
1373 @end table