Fix package.el handling of local variables on first line.
[emacs.git] / doc / emacs / search.texi
blob152ac605843a56d4ef0e9b09f8fe13d67154e540
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2012
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 key
272 bindings.  These key bindings 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 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-below}) and @kbd{C-x
332 ^} (@code{enlarge-window}), which don't exactly scroll but do affect
333 where the text appears on the screen.  It applies to any command whose
334 name has a non-@code{nil} @code{isearch-scroll} property.  So you can
335 control which commands are affected by changing these properties.
337   For example, to make @kbd{C-h l} usable within an incremental search
338 in all future Emacs sessions, use @kbd{C-h c} to find what command it
339 runs (@pxref{Key Help}), which is @code{view-lossage}.  Then you can
340 put the following line in your init file (@pxref{Init File}):
342 @example
343 (put 'view-lossage 'isearch-scroll t)
344 @end example
346 @noindent
347 This feature can be applied to any command that doesn't permanently
348 change point, the buffer contents, the match data, the current buffer,
349 or the selected window and frame.  The command must not itself attempt
350 an incremental search.
352 @node Isearch Minibuffer
353 @subsection Searching the Minibuffer
354 @cindex minibuffer history, searching
356 If you start an incremental search while the minibuffer is active,
357 Emacs searches the contents of the minibuffer.  Unlike searching an
358 ordinary buffer, the search string is not shown in the echo area,
359 because that is used to display the minibuffer.
361 If an incremental search fails in the minibuffer, it tries searching
362 the minibuffer history.  @xref{Minibuffer History}.  You can visualize
363 the minibuffer and its history as a series of ``pages'', with the
364 earliest history element on the first page and the current minibuffer
365 on the last page.  A forward search, @kbd{C-s}, searches forward to
366 later pages; a reverse search, @kbd{C-r}, searches backwards to
367 earlier pages.  Like in ordinary buffer search, a failing search can
368 wrap around, going from the last page to the first page or vice versa.
370 When the current match is on a history element, that history element
371 is pulled into the minibuffer.  If you exit the incremental search
372 normally (e.g. by typing @key{RET}), it remains in the minibuffer
373 afterwards.  Canceling the search, with @kbd{C-g}, restores the
374 contents of the minibuffer when you began the search.
376 @node Nonincremental Search
377 @section Nonincremental Search
378 @cindex nonincremental search
380   Emacs also has conventional nonincremental search commands, which require
381 you to type the entire search string before searching begins.
383 @table @kbd
384 @item C-s @key{RET} @var{string} @key{RET}
385 Search for @var{string}.
386 @item C-r @key{RET} @var{string} @key{RET}
387 Search backward for @var{string}.
388 @end table
390   To start a nonincremental search, first type @kbd{C-s @key{RET}}.
391 This enters the minibuffer to read the search string; terminate the
392 string with @key{RET}, and then the search takes place.  If the string
393 is not found, the search command signals an error.
395 @findex search-forward
396 @findex search-backward
397   When you type @kbd{C-s @key{RET}}, the @kbd{C-s} invokes incremental
398 search as usual.  That command is specially programmed to invoke the
399 command for nonincremental search, @code{search-forward}, if the
400 string you specify is empty.  (Such an empty argument would otherwise
401 be useless.)  @kbd{C-r @key{RET}} does likewise, invoking the command
402 @code{search-backward}.
404 @node Word Search
405 @section Word Search
406 @cindex word search
408   A @dfn{word search} finds a sequence of words without regard to the
409 type of punctuation between them.  For instance, if you enter a search
410 string that consists of two words separated by a single space, the
411 search matches any sequence of those two words separated by one or
412 more spaces, newlines, or other punctuation characters.  This is
413 particularly useful for searching text documents, because you don't
414 have to worry whether the words you are looking for are separated by
415 newlines or spaces.
417 @table @kbd
418 @item M-s w
419 If incremental search is active, toggle word search mode
420 (@code{isearch-toggle-word}); otherwise, begin an incremental forward
421 word search (@code{isearch-forward-word}).
422 @item M-s w @key{RET} @var{words} @key{RET}
423 Search for @var{words}, using a forward nonincremental word search.
424 @item M-s w C-r @key{RET} @var{words} @key{RET}
425 Search backward for @var{words}, using a nonincremental word search.
426 @end table
428 @kindex M-s w
429 @findex isearch-forward-word
430   To begin a forward incremental word search, type @kbd{M-s w}.  If
431 incremental search is not already active, this runs the command
432 @code{isearch-forward-word}.  If incremental search is already active
433 (whether a forward or backward search), @kbd{M-s w} switches to a word
434 search while keeping the direction of the search and the current
435 search string unchanged.  You can toggle word search back off by
436 typing @kbd{M-s w} again.
438 @findex word-search-forward
439 @findex word-search-backward
440   To begin a nonincremental word search, type @kbd{M-s w @key{RET}}
441 for a forward search, or @kbd{M-s w C-r @key{RET}} for a backward search.
442 These run the commands @code{word-search-forward} and
443 @code{word-search-backward} respectively.
445   Incremental and nonincremental word searches differ slightly in the
446 way they find a match.  In a nonincremental word search, the last word
447 in the search string must exactly match a whole word.  In an
448 incremental word search, the matching is more lax: the last word in
449 the search string can match part of a word, so that the matching
450 proceeds incrementally as you type.  This additional laxity does not
451 apply to the lazy highlight, which always matches whole words.
453 @node Regexp Search
454 @section Regular Expression Search
455 @cindex regexp search
456 @cindex search for a regular expression
458   A @dfn{regular expression} (or @dfn{regexp} for short) is a pattern
459 that denotes a class of alternative strings to match.  Emacs
460 provides both incremental and nonincremental ways to search for a
461 match for a regexp.  The syntax of regular expressions is explained in
462 the next section.
464 @table @kbd
465 @item C-M-s
466 Begin incremental regexp search (@code{isearch-forward-regexp}).
467 @item C-M-r
468 Begin reverse incremental regexp search (@code{isearch-backward-regexp}).
469 @end table
471 @kindex C-M-s
472 @findex isearch-forward-regexp
473 @kindex C-M-r
474 @findex isearch-backward-regexp
475   Incremental search for a regexp is done by typing @kbd{C-M-s}
476 (@code{isearch-forward-regexp}), by invoking @kbd{C-s} with a
477 prefix argument (whose value does not matter), or by typing @kbd{M-r}
478 within a forward incremental search.  This command reads a
479 search string incrementally just like @kbd{C-s}, but it treats the
480 search string as a regexp rather than looking for an exact match
481 against the text in the buffer.  Each time you add text to the search
482 string, you make the regexp longer, and the new regexp is searched
483 for.  To search backward for a regexp, use @kbd{C-M-r}
484 (@code{isearch-backward-regexp}), @kbd{C-r} with a prefix argument,
485 or @kbd{M-r} within a backward incremental search.
487   All of the special key sequences in an ordinary incremental search
488 do similar things in an incremental regexp search.  For instance,
489 typing @kbd{C-s} immediately after starting the search retrieves the
490 last incremental search regexp used and searches forward for it.
491 Incremental regexp and non-regexp searches have independent defaults.
492 They also have separate search rings, which you can access with
493 @kbd{M-p} and @kbd{M-n}.
495 @vindex search-whitespace-regexp
496   If you type @key{SPC} in incremental regexp search, it matches any
497 sequence of whitespace characters, including newlines.  If you want to
498 match just a space, type @kbd{C-q @key{SPC}}.  You can control what a
499 bare space matches by setting the variable
500 @code{search-whitespace-regexp} to the desired regexp.
502   In some cases, adding characters to the regexp in an incremental
503 regexp search can make the cursor move back and start again.  For
504 example, if you have searched for @samp{foo} and you add @samp{\|bar},
505 the cursor backs up in case the first @samp{bar} precedes the first
506 @samp{foo}.  @xref{Regexps}.
508   Forward and backward regexp search are not symmetrical, because
509 regexp matching in Emacs always operates forward, starting with the
510 beginning of the regexp.  Thus, forward regexp search scans forward,
511 trying a forward match at each possible starting position.  Backward
512 regexp search scans backward, trying a forward match at each possible
513 starting position.  These search methods are not mirror images.
515 @findex re-search-forward
516 @findex re-search-backward
517   Nonincremental search for a regexp is done with the commands
518 @code{re-search-forward} and @code{re-search-backward}.  You can
519 invoke these with @kbd{M-x}, or by way of incremental regexp search
520 with @kbd{C-M-s @key{RET}} and @kbd{C-M-r @key{RET}}.
522   If you use the incremental regexp search commands with a prefix
523 argument, they perform ordinary string search, like
524 @code{isearch-forward} and @code{isearch-backward}.  @xref{Incremental
525 Search}.
527 @node Regexps
528 @section Syntax of Regular Expressions
529 @cindex syntax of regexps
530 @cindex regular expression
531 @cindex regexp
533   This manual describes regular expression features that users
534 typically use.  @xref{Regular Expressions,,, elisp, The Emacs Lisp
535 Reference Manual}, for additional features used mainly in Lisp
536 programs.
538   Regular expressions have a syntax in which a few characters are
539 special constructs and the rest are @dfn{ordinary}.  An ordinary
540 character matches that same character and nothing else.  The special
541 characters are @samp{$^.*+?[\}.  The character @samp{]} is special if
542 it ends a character alternative (see later).  The character @samp{-}
543 is special inside a character alternative.  Any other character
544 appearing in a regular expression is ordinary, unless a @samp{\}
545 precedes it.  (When you use regular expressions in a Lisp program,
546 each @samp{\} must be doubled, see the example near the end of this
547 section.)
549   For example, @samp{f} is not a special character, so it is ordinary, and
550 therefore @samp{f} is a regular expression that matches the string
551 @samp{f} and no other string.  (It does @emph{not} match the string
552 @samp{ff}.)  Likewise, @samp{o} is a regular expression that matches
553 only @samp{o}.  (When case distinctions are being ignored, these regexps
554 also match @samp{F} and @samp{O}, but we consider this a generalization
555 of ``the same string'', rather than an exception.)
557   Any two regular expressions @var{a} and @var{b} can be concatenated.
558 The result is a regular expression which matches a string if @var{a}
559 matches some amount of the beginning of that string and @var{b}
560 matches the rest of the string.  For example, concatenating the
561 regular expressions @samp{f} and @samp{o} gives the regular expression
562 @samp{fo}, which matches only the string @samp{fo}.  Still trivial.
563 To do something nontrivial, you need to use one of the special
564 characters.  Here is a list of them.
566 @table @asis
567 @item @kbd{.}@: @r{(Period)}
568 is a special character that matches any single character except a
569 newline.  For example, the regular expressions @samp{a.b} matches any
570 three-character string that begins with @samp{a} and ends with
571 @samp{b}.
573 @item @kbd{*}
574 is not a construct by itself; it is a postfix operator that means to
575 match the preceding regular expression repetitively any number of
576 times, as many times as possible.  Thus, @samp{o*} matches any number
577 of @samp{o}s, including no @samp{o}s.
579 @samp{*} always applies to the @emph{smallest} possible preceding
580 expression.  Thus, @samp{fo*} has a repeating @samp{o}, not a repeating
581 @samp{fo}.  It matches @samp{f}, @samp{fo}, @samp{foo}, and so on.
583 The matcher processes a @samp{*} construct by matching, immediately,
584 as many repetitions as can be found.  Then it continues with the rest
585 of the pattern.  If that fails, backtracking occurs, discarding some
586 of the matches of the @samp{*}-modified construct in case that makes
587 it possible to match the rest of the pattern.  For example, in matching
588 @samp{ca*ar} against the string @samp{caaar}, the @samp{a*} first
589 tries to match all three @samp{a}s; but the rest of the pattern is
590 @samp{ar} and there is only @samp{r} left to match, so this try fails.
591 The next alternative is for @samp{a*} to match only two @samp{a}s.
592 With this choice, the rest of the regexp matches successfully.@refill
594 @item @kbd{+}
595 is a postfix operator, similar to @samp{*} except that it must match
596 the preceding expression at least once.  Thus, @samp{ca+r} matches the
597 strings @samp{car} and @samp{caaaar} but not the string @samp{cr},
598 whereas @samp{ca*r} matches all three strings.
600 @item @kbd{?}
601 is a postfix operator, similar to @samp{*} except that it can match
602 the preceding expression either once or not at all.  Thus, @samp{ca?r}
603 matches @samp{car} or @samp{cr}, and nothing else.
605 @item @kbd{*?}, @kbd{+?}, @kbd{??}
606 @cindex non-greedy regexp matching
607 are non-@dfn{greedy} variants of the operators above.  The normal
608 operators @samp{*}, @samp{+}, @samp{?} match as much as they can, as
609 long as the overall regexp can still match.  With a following
610 @samp{?}, they will match as little as possible.
612 Thus, both @samp{ab*} and @samp{ab*?} can match the string @samp{a}
613 and the string @samp{abbbb}; but if you try to match them both against
614 the text @samp{abbb}, @samp{ab*} will match it all (the longest valid
615 match), while @samp{ab*?}  will match just @samp{a} (the shortest
616 valid match).
618 Non-greedy operators match the shortest possible string starting at a
619 given starting point; in a forward search, though, the earliest
620 possible starting point for match is always the one chosen.  Thus, if
621 you search for @samp{a.*?$} against the text @samp{abbab} followed by
622 a newline, it matches the whole string.  Since it @emph{can} match
623 starting at the first @samp{a}, it does.
625 @item @kbd{\@{@var{n}\@}}
626 is a postfix operator specifying @var{n} repetitions---that is, the
627 preceding regular expression must match exactly @var{n} times in a
628 row.  For example, @samp{x\@{4\@}} matches the string @samp{xxxx} and
629 nothing else.
631 @item @kbd{\@{@var{n},@var{m}\@}}
632 is a postfix operator specifying between @var{n} and @var{m}
633 repetitions---that is, the preceding regular expression must match at
634 least @var{n} times, but no more than @var{m} times.  If @var{m} is
635 omitted, then there is no upper limit, but the preceding regular
636 expression must match at least @var{n} times.@* @samp{\@{0,1\@}} is
637 equivalent to @samp{?}. @* @samp{\@{0,\@}} is equivalent to
638 @samp{*}. @* @samp{\@{1,\@}} is equivalent to @samp{+}.
640 @item @kbd{[ @dots{} ]}
641 is a @dfn{character set}, beginning with @samp{[} and terminated by
642 @samp{]}.
644 In the simplest case, the characters between the two brackets are what
645 this set can match.  Thus, @samp{[ad]} matches either one @samp{a} or
646 one @samp{d}, and @samp{[ad]*} matches any string composed of just
647 @samp{a}s and @samp{d}s (including the empty string).  It follows that
648 @samp{c[ad]*r} matches @samp{cr}, @samp{car}, @samp{cdr},
649 @samp{caddaar}, etc.
651 You can also include character ranges in a character set, by writing the
652 starting and ending characters with a @samp{-} between them.  Thus,
653 @samp{[a-z]} matches any lower-case @acronym{ASCII} letter.  Ranges may be
654 intermixed freely with individual characters, as in @samp{[a-z$%.]},
655 which matches any lower-case @acronym{ASCII} letter or @samp{$}, @samp{%} or
656 period.
658 You can also include certain special @dfn{character classes} in a
659 character set.  A @samp{[:} and balancing @samp{:]} enclose a
660 character class inside a character alternative.  For instance,
661 @samp{[[:alnum:]]} matches any letter or digit.  @xref{Char Classes,,,
662 elisp, The Emacs Lisp Reference Manual}, for a list of character
663 classes.
665 To include a @samp{]} in a character set, you must make it the first
666 character.  For example, @samp{[]a]} matches @samp{]} or @samp{a}.  To
667 include a @samp{-}, write @samp{-} as the first or last character of the
668 set, or put it after a range.  Thus, @samp{[]-]} matches both @samp{]}
669 and @samp{-}.
671 To include @samp{^} in a set, put it anywhere but at the beginning of
672 the set.  (At the beginning, it complements the set---see below.)
674 When you use a range in case-insensitive search, you should write both
675 ends of the range in upper case, or both in lower case, or both should
676 be non-letters.  The behavior of a mixed-case range such as @samp{A-z}
677 is somewhat ill-defined, and it may change in future Emacs versions.
679 @item @kbd{[^ @dots{} ]}
680 @samp{[^} begins a @dfn{complemented character set}, which matches any
681 character except the ones specified.  Thus, @samp{[^a-z0-9A-Z]} matches
682 all characters @emph{except} @acronym{ASCII} letters and digits.
684 @samp{^} is not special in a character set unless it is the first
685 character.  The character following the @samp{^} is treated as if it
686 were first (in other words, @samp{-} and @samp{]} are not special there).
688 A complemented character set can match a newline, unless newline is
689 mentioned as one of the characters not to match.  This is in contrast to
690 the handling of regexps in programs such as @code{grep}.
692 @item @kbd{^}
693 is a special character that matches the empty string, but only at the
694 beginning of a line in the text being matched.  Otherwise it fails to
695 match anything.  Thus, @samp{^foo} matches a @samp{foo} that occurs at
696 the beginning of a line.
698 For historical compatibility reasons, @samp{^} can be used with this
699 meaning only at the beginning of the regular expression, or after
700 @samp{\(} or @samp{\|}.
702 @item @kbd{$}
703 is similar to @samp{^} but matches only at the end of a line.  Thus,
704 @samp{x+$} matches a string of one @samp{x} or more at the end of a line.
706 For historical compatibility reasons, @samp{$} can be used with this
707 meaning only at the end of the regular expression, or before @samp{\)}
708 or @samp{\|}.
710 @item @kbd{\}
711 has two functions: it quotes the special characters (including
712 @samp{\}), and it introduces additional special constructs.
714 Because @samp{\} quotes special characters, @samp{\$} is a regular
715 expression that matches only @samp{$}, and @samp{\[} is a regular
716 expression that matches only @samp{[}, and so on.
718 See the following section for the special constructs that begin
719 with @samp{\}.
720 @end table
722   Note: for historical compatibility, special characters are treated as
723 ordinary ones if they are in contexts where their special meanings make no
724 sense.  For example, @samp{*foo} treats @samp{*} as ordinary since there is
725 no preceding expression on which the @samp{*} can act.  It is poor practice
726 to depend on this behavior; it is better to quote the special character anyway,
727 regardless of where it appears.
729 As a @samp{\} is not special inside a character alternative, it can
730 never remove the special meaning of @samp{-} or @samp{]}.  So you
731 should not quote these characters when they have no special meaning
732 either.  This would not clarify anything, since backslashes can
733 legitimately precede these characters where they @emph{have} special
734 meaning, as in @samp{[^\]} (@code{"[^\\]"} for Lisp string syntax),
735 which matches any single character except a backslash.
737 @node Regexp Backslash
738 @section Backslash in Regular Expressions
740   For the most part, @samp{\} followed by any character matches only
741 that character.  However, there are several exceptions: two-character
742 sequences starting with @samp{\} that have special meanings.  The
743 second character in the sequence is always an ordinary character when
744 used on its own.  Here is a table of @samp{\} constructs.
746 @table @kbd
747 @item \|
748 specifies an alternative.  Two regular expressions @var{a} and @var{b}
749 with @samp{\|} in between form an expression that matches some text if
750 either @var{a} matches it or @var{b} matches it.  It works by trying to
751 match @var{a}, and if that fails, by trying to match @var{b}.
753 Thus, @samp{foo\|bar} matches either @samp{foo} or @samp{bar}
754 but no other string.@refill
756 @samp{\|} applies to the largest possible surrounding expressions.  Only a
757 surrounding @samp{\( @dots{} \)} grouping can limit the grouping power of
758 @samp{\|}.@refill
760 Full backtracking capability exists to handle multiple uses of @samp{\|}.
762 @item \( @dots{} \)
763 is a grouping construct that serves three purposes:
765 @enumerate
766 @item
767 To enclose a set of @samp{\|} alternatives for other operations.
768 Thus, @samp{\(foo\|bar\)x} matches either @samp{foox} or @samp{barx}.
770 @item
771 To enclose a complicated expression for the postfix operators @samp{*},
772 @samp{+} and @samp{?} to operate on.  Thus, @samp{ba\(na\)*} matches
773 @samp{bananana}, etc., with any (zero or more) number of @samp{na}
774 strings.@refill
776 @item
777 To record a matched substring for future reference.
778 @end enumerate
780 This last application is not a consequence of the idea of a
781 parenthetical grouping; it is a separate feature that is assigned as a
782 second meaning to the same @samp{\( @dots{} \)} construct.  In practice
783 there is usually no conflict between the two meanings; when there is
784 a conflict, you can use a ``shy'' group.
786 @item \(?: @dots{} \)
787 @cindex shy group, in regexp
788 specifies a ``shy'' group that does not record the matched substring;
789 you can't refer back to it with @samp{\@var{d}}.  This is useful
790 in mechanically combining regular expressions, so that you
791 can add groups for syntactic purposes without interfering with
792 the numbering of the groups that are meant to be referred to.
794 @item \@var{d}
795 @cindex back reference, in regexp
796 matches the same text that matched the @var{d}th occurrence of a
797 @samp{\( @dots{} \)} construct.  This is called a @dfn{back
798 reference}.
800 After the end of a @samp{\( @dots{} \)} construct, the matcher remembers
801 the beginning and end of the text matched by that construct.  Then,
802 later on in the regular expression, you can use @samp{\} followed by the
803 digit @var{d} to mean ``match the same text matched the @var{d}th time
804 by the @samp{\( @dots{} \)} construct''.
806 The strings matching the first nine @samp{\( @dots{} \)} constructs
807 appearing in a regular expression are assigned numbers 1 through 9 in
808 the order that the open-parentheses appear in the regular expression.
809 So you can use @samp{\1} through @samp{\9} to refer to the text matched
810 by the corresponding @samp{\( @dots{} \)} constructs.
812 For example, @samp{\(.*\)\1} matches any newline-free string that is
813 composed of two identical halves.  The @samp{\(.*\)} matches the first
814 half, which may be anything, but the @samp{\1} that follows must match
815 the same exact text.
817 If a particular @samp{\( @dots{} \)} construct matches more than once
818 (which can easily happen if it is followed by @samp{*}), only the last
819 match is recorded.
821 @item \`
822 matches the empty string, but only at the beginning of the string or
823 buffer (or its accessible portion) being matched against.
825 @item \'
826 matches the empty string, but only at the end of the string or buffer
827 (or its accessible portion) being matched against.
829 @item \=
830 matches the empty string, but only at point.
832 @item \b
833 matches the empty string, but only at the beginning or
834 end of a word.  Thus, @samp{\bfoo\b} matches any occurrence of
835 @samp{foo} as a separate word.  @samp{\bballs?\b} matches
836 @samp{ball} or @samp{balls} as a separate word.@refill
838 @samp{\b} matches at the beginning or end of the buffer
839 regardless of what text appears next to it.
841 @item \B
842 matches the empty string, but @emph{not} at the beginning or
843 end of a word.
845 @item \<
846 matches the empty string, but only at the beginning of a word.
847 @samp{\<} matches at the beginning of the buffer only if a
848 word-constituent character follows.
850 @item \>
851 matches the empty string, but only at the end of a word.  @samp{\>}
852 matches at the end of the buffer only if the contents end with a
853 word-constituent character.
855 @item \w
856 matches any word-constituent character.  The syntax table determines
857 which characters these are.  @xref{Syntax Tables,, Syntax Tables,
858 elisp, The Emacs Lisp Reference Manual}.
860 @item \W
861 matches any character that is not a word-constituent.
863 @item \_<
864 matches the empty string, but only at the beginning of a symbol.
865 A symbol is a sequence of one or more symbol-constituent characters.
866 A symbol-constituent character is a character whose syntax is either
867 @samp{w} or @samp{_}.  @samp{\_<} matches at the beginning of the
868 buffer only if a symbol-constituent character follows.
870 @item \_>
871 matches the empty string, but only at the end of a symbol.  @samp{\_>}
872 matches at the end of the buffer only if the contents end with a
873 symbol-constituent character.
875 @item \s@var{c}
876 matches any character whose syntax is @var{c}.  Here @var{c} is a
877 character that designates a particular syntax class: thus, @samp{w}
878 for word constituent, @samp{-} or @samp{ } for whitespace, @samp{.}
879 for ordinary punctuation, etc.  @xref{Syntax Tables,, Syntax Tables,
880 elisp, The Emacs Lisp Reference Manual}.
882 @item \S@var{c}
883 matches any character whose syntax is not @var{c}.
885 @cindex categories of characters
886 @cindex characters which belong to a specific language
887 @findex describe-categories
888 @item \c@var{c}
889 matches any character that belongs to the category @var{c}.  For
890 example, @samp{\cc} matches Chinese characters, @samp{\cg} matches
891 Greek characters, etc.  For the description of the known categories,
892 type @kbd{M-x describe-categories @key{RET}}.
894 @item \C@var{c}
895 matches any character that does @emph{not} belong to category
896 @var{c}.
897 @end table
899   The constructs that pertain to words and syntax are controlled by
900 the setting of the syntax table.  @xref{Syntax Tables,, Syntax Tables,
901 elisp, The Emacs Lisp Reference Manual}.
903 @node Regexp Example
904 @section Regular Expression Example
906   Here is an example of a regexp---similar to the regexp that Emacs
907 uses, by default, to recognize the end of a sentence, not including
908 the following space (i.e., the variable @code{sentence-end-base}):
910 @example
911 @verbatim
912 [.?!][]\"')}]*
913 @end verbatim
914 @end example
916 @noindent
917 This contains two parts in succession: a character set matching
918 period, @samp{?}, or @samp{!}, and a character set matching
919 close-brackets, quotes, or parentheses, repeated zero or more times.
921 @node Search Case
922 @section Searching and Case
924   Searches in Emacs normally ignore the case of the text they are
925 searching through, if you specify the text in lower case.  Thus, if
926 you specify searching for @samp{foo}, then @samp{Foo} and @samp{foo}
927 also match.  Regexps, and in particular character sets, behave
928 likewise: @samp{[ab]} matches @samp{a} or @samp{A} or @samp{b} or
929 @samp{B}.@refill
931   An upper-case letter anywhere in the incremental search string makes
932 the search case-sensitive.  Thus, searching for @samp{Foo} does not find
933 @samp{foo} or @samp{FOO}.  This applies to regular expression search as
934 well as to string search.  The effect ceases if you delete the
935 upper-case letter from the search string.
937   Typing @kbd{M-c} within an incremental search toggles the case
938 sensitivity of that search.  The effect does not extend beyond the
939 current incremental search to the next one, but it does override the
940 effect of adding or removing an upper-case letter in the current
941 search.
943 @vindex case-fold-search
944   If you set the variable @code{case-fold-search} to @code{nil}, then
945 all letters must match exactly, including case.  This is a per-buffer
946 variable; altering the variable normally affects only the current buffer,
947 unless you change its default value.  @xref{Locals}.
948 This variable applies to nonincremental searches also, including those
949 performed by the replace commands (@pxref{Replace}) and the minibuffer
950 history matching commands (@pxref{Minibuffer History}).
952   Several related variables control case-sensitivity of searching and
953 matching for specific commands or activities.  For instance,
954 @code{tags-case-fold-search} controls case sensitivity for
955 @code{find-tag}.  To find these variables, do @kbd{M-x
956 apropos-variable @key{RET} case-fold-search @key{RET}}.
958 @node Replace
959 @section Replacement Commands
960 @cindex replacement
961 @cindex search-and-replace commands
962 @cindex string substitution
963 @cindex global substitution
965   Emacs provides several commands for performing search-and-replace
966 operations.  In addition to the simple @kbd{M-x replace-string}
967 command, there is @kbd{M-%} (@code{query-replace}), which presents
968 each occurrence of the pattern and asks you whether to replace it.
970   The replace commands normally operate on the text from point to the
971 end of the buffer.  When the region is active, they operate on it
972 instead (@pxref{Mark}).  The basic replace commands replace one
973 @dfn{search string} (or regexp) with one @dfn{replacement string}.  It
974 is possible to perform several replacements in parallel, using the
975 command @code{expand-region-abbrevs} (@pxref{Expanding Abbrevs}).
977 @menu
978 * Unconditional Replace::   Replacing all matches for a string.
979 * Regexp Replace::          Replacing all matches for a regexp.
980 * Replacement and Case::    How replacements preserve case of letters.
981 * Query Replace::           How to use querying.
982 @end menu
984 @node Unconditional Replace, Regexp Replace, Replace, Replace
985 @subsection Unconditional Replacement
986 @findex replace-string
988 @table @kbd
989 @item M-x replace-string @key{RET} @var{string} @key{RET} @var{newstring} @key{RET}
990 Replace every occurrence of @var{string} with @var{newstring}.
991 @end table
993   To replace every instance of @samp{foo} after point with @samp{bar},
994 use the command @kbd{M-x replace-string} with the two arguments
995 @samp{foo} and @samp{bar}.  Replacement happens only in the text after
996 point, so if you want to cover the whole buffer you must go to the
997 beginning first.  All occurrences up to the end of the buffer are
998 replaced; to limit replacement to part of the buffer, activate the
999 region around that part.  When the region is active, replacement is
1000 limited to the region (@pxref{Mark}).
1002   When @code{replace-string} exits, it leaves point at the last
1003 occurrence replaced.  It adds the prior position of point (where the
1004 @code{replace-string} command was issued) to the mark ring, without
1005 activating the mark; use @kbd{C-u C-@key{SPC}} to move back there.
1006 @xref{Mark Ring}.
1008   A prefix argument restricts replacement to matches that are
1009 surrounded by word boundaries.
1011   @xref{Replacement and Case}, for details about case-sensitivity in
1012 replace commands.
1014 @node Regexp Replace, Replacement and Case, Unconditional Replace, Replace
1015 @subsection Regexp Replacement
1016 @findex replace-regexp
1018   The @kbd{M-x replace-string} command replaces exact matches for a
1019 single string.  The similar command @kbd{M-x replace-regexp} replaces
1020 any match for a specified pattern.
1022 @table @kbd
1023 @item M-x replace-regexp @key{RET} @var{regexp} @key{RET} @var{newstring} @key{RET}
1024 Replace every match for @var{regexp} with @var{newstring}.
1025 @end table
1027 @cindex back reference, in regexp replacement
1028   In @code{replace-regexp}, the @var{newstring} need not be constant:
1029 it can refer to all or part of what is matched by the @var{regexp}.
1030 @samp{\&} in @var{newstring} stands for the entire match being
1031 replaced.  @samp{\@var{d}} in @var{newstring}, where @var{d} is a
1032 digit, stands for whatever matched the @var{d}th parenthesized
1033 grouping in @var{regexp}.  (This is called a ``back reference''.)
1034 @samp{\#} refers to the count of replacements already made in this
1035 command, as a decimal number.  In the first replacement, @samp{\#}
1036 stands for @samp{0}; in the second, for @samp{1}; and so on.  For
1037 example,
1039 @example
1040 M-x replace-regexp @key{RET} c[ad]+r @key{RET} \&-safe @key{RET}
1041 @end example
1043 @noindent
1044 replaces (for example) @samp{cadr} with @samp{cadr-safe} and @samp{cddr}
1045 with @samp{cddr-safe}.
1047 @example
1048 M-x replace-regexp @key{RET} \(c[ad]+r\)-safe @key{RET} \1 @key{RET}
1049 @end example
1051 @noindent
1052 performs the inverse transformation.  To include a @samp{\} in the
1053 text to replace with, you must enter @samp{\\}.
1055   If you want to enter part of the replacement string by hand each
1056 time, use @samp{\?} in the replacement string.  Each replacement will
1057 ask you to edit the replacement string in the minibuffer, putting
1058 point where the @samp{\?} was.
1060   The remainder of this subsection is intended for specialized tasks
1061 and requires knowledge of Lisp.  Most readers can skip it.
1063   You can use Lisp expressions to calculate parts of the
1064 replacement string.  To do this, write @samp{\,} followed by the
1065 expression in the replacement string.  Each replacement calculates the
1066 value of the expression and converts it to text without quoting (if
1067 it's a string, this means using the string's contents), and uses it in
1068 the replacement string in place of the expression itself.  If the
1069 expression is a symbol, one space in the replacement string after the
1070 symbol name goes with the symbol name, so the value replaces them
1071 both.
1073   Inside such an expression, you can use some special sequences.
1074 @samp{\&} and @samp{\@var{n}} refer here, as usual, to the entire
1075 match as a string, and to a submatch as a string.  @var{n} may be
1076 multiple digits, and the value of @samp{\@var{n}} is @code{nil} if
1077 subexpression @var{n} did not match.  You can also use @samp{\#&} and
1078 @samp{\#@var{n}} to refer to those matches as numbers (this is valid
1079 when the match or submatch has the form of a numeral).  @samp{\#} here
1080 too stands for the number of already-completed replacements.
1082   Repeating our example to exchange @samp{x} and @samp{y}, we can thus
1083 do it also this way:
1085 @example
1086 M-x replace-regexp @key{RET} \(x\)\|y @key{RET}
1087 \,(if \1 "y" "x") @key{RET}
1088 @end example
1090   For computing replacement strings for @samp{\,}, the @code{format}
1091 function is often useful (@pxref{Formatting Strings,,, elisp, The Emacs
1092 Lisp Reference Manual}).  For example, to add consecutively numbered
1093 strings like @samp{ABC00042} to columns 73 @w{to 80} (unless they are
1094 already occupied), you can use
1096 @example
1097 M-x replace-regexp @key{RET} ^.\@{0,72\@}$ @key{RET}
1098 \,(format "%-72sABC%05d" \& \#) @key{RET}
1099 @end example
1101 @node Replacement and Case, Query Replace, Regexp Replace, Replace
1102 @subsection Replace Commands and Case
1104   If the first argument of a replace command is all lower case, the
1105 command ignores case while searching for occurrences to
1106 replace---provided @code{case-fold-search} is non-@code{nil}.  If
1107 @code{case-fold-search} is set to @code{nil}, case is always significant
1108 in all searches.
1110 @vindex case-replace
1111   In addition, when the @var{newstring} argument is all or partly lower
1112 case, replacement commands try to preserve the case pattern of each
1113 occurrence.  Thus, the command
1115 @example
1116 M-x replace-string @key{RET} foo @key{RET} bar @key{RET}
1117 @end example
1119 @noindent
1120 replaces a lower case @samp{foo} with a lower case @samp{bar}, an
1121 all-caps @samp{FOO} with @samp{BAR}, and a capitalized @samp{Foo} with
1122 @samp{Bar}.  (These three alternatives---lower case, all caps, and
1123 capitalized, are the only ones that @code{replace-string} can
1124 distinguish.)
1126   If upper-case letters are used in the replacement string, they remain
1127 upper case every time that text is inserted.  If upper-case letters are
1128 used in the first argument, the second argument is always substituted
1129 exactly as given, with no case conversion.  Likewise, if either
1130 @code{case-replace} or @code{case-fold-search} is set to @code{nil},
1131 replacement is done without case conversion.
1133 @node Query Replace,, Replacement and Case, Replace
1134 @subsection Query Replace
1135 @cindex query replace
1137 @table @kbd
1138 @item M-% @var{string} @key{RET} @var{newstring} @key{RET}
1139 Replace some occurrences of @var{string} with @var{newstring}.
1140 @item C-M-% @var{regexp} @key{RET} @var{newstring} @key{RET}
1141 Replace some matches for @var{regexp} with @var{newstring}.
1142 @end table
1144 @kindex M-%
1145 @findex query-replace
1146   If you want to change only some of the occurrences of @samp{foo} to
1147 @samp{bar}, not all of them, use @kbd{M-%} (@code{query-replace}).
1148 This command finds occurrences of @samp{foo} one by one, displays each
1149 occurrence and asks you whether to replace it.  Aside from querying,
1150 @code{query-replace} works just like @code{replace-string}
1151 (@pxref{Unconditional Replace}).  In particular, it preserves case
1152 provided @code{case-replace} is non-@code{nil}, as it normally is
1153 (@pxref{Replacement and Case}).  A numeric argument means to consider
1154 only occurrences that are bounded by word-delimiter characters.
1156 @kindex C-M-%
1157 @findex query-replace-regexp
1158   @kbd{C-M-%} performs regexp search and replace (@code{query-replace-regexp}).
1159 It works like @code{replace-regexp} except that it queries
1160 like @code{query-replace}.
1162 @cindex faces for highlighting query replace
1163   These commands highlight the current match using the face
1164 @code{query-replace}.  They highlight other matches using
1165 @code{lazy-highlight} just like incremental search (@pxref{Incremental
1166 Search}).  By default, @code{query-replace-regexp} will show the
1167 substituted replacement string for the current match in the
1168 minibuffer.  If you want to keep special sequences @samp{\&} and
1169 @samp{\@var{n}} unexpanded, customize
1170 @code{query-replace-show-replacement} variable.
1172   The characters you can type when you are shown a match for the string
1173 or regexp are:
1175 @ignore @c Not worth it.
1176 @kindex SPC @r{(query-replace)}
1177 @kindex DEL @r{(query-replace)}
1178 @kindex , @r{(query-replace)}
1179 @kindex RET @r{(query-replace)}
1180 @kindex . @r{(query-replace)}
1181 @kindex ! @r{(query-replace)}
1182 @kindex ^ @r{(query-replace)}
1183 @kindex C-r @r{(query-replace)}
1184 @kindex C-w @r{(query-replace)}
1185 @kindex C-l @r{(query-replace)}
1186 @end ignore
1188 @c WideCommands
1189 @table @kbd
1190 @item @key{SPC}
1191 to replace the occurrence with @var{newstring}.
1193 @item @key{DEL}
1194 to skip to the next occurrence without replacing this one.
1196 @item , @r{(Comma)}
1197 to replace this occurrence and display the result.  You are then asked
1198 for another input character to say what to do next.  Since the
1199 replacement has already been made, @key{DEL} and @key{SPC} are
1200 equivalent in this situation; both move to the next occurrence.
1202 You can type @kbd{C-r} at this point (see below) to alter the replaced
1203 text.  You can also type @kbd{C-x u} to undo the replacement; this exits
1204 the @code{query-replace}, so if you want to do further replacement you
1205 must use @kbd{C-x @key{ESC} @key{ESC} @key{RET}} to restart
1206 (@pxref{Repetition}).
1208 @item @key{RET}
1209 to exit without doing any more replacements.
1211 @item .@: @r{(Period)}
1212 to replace this occurrence and then exit without searching for more
1213 occurrences.
1215 @item !
1216 to replace all remaining occurrences without asking again.
1218 @item ^
1219 to go back to the position of the previous occurrence (or what used to
1220 be an occurrence), in case you changed it by mistake or want to
1221 reexamine it.
1223 @item C-r
1224 to enter a recursive editing level, in case the occurrence needs to be
1225 edited rather than just replaced with @var{newstring}.  When you are
1226 done, exit the recursive editing level with @kbd{C-M-c} to proceed to
1227 the next occurrence.  @xref{Recursive Edit}.
1229 @item C-w
1230 to delete the occurrence, and then enter a recursive editing level as in
1231 @kbd{C-r}.  Use the recursive edit to insert text to replace the deleted
1232 occurrence of @var{string}.  When done, exit the recursive editing level
1233 with @kbd{C-M-c} to proceed to the next occurrence.
1235 @item e
1236 to edit the replacement string in the minibuffer.  When you exit the
1237 minibuffer by typing @key{RET}, the minibuffer contents replace the
1238 current occurrence of the pattern.  They also become the new
1239 replacement string for any further occurrences.
1241 @item C-l
1242 to redisplay the screen.  Then you must type another character to
1243 specify what to do with this occurrence.
1245 @item C-h
1246 to display a message summarizing these options.  Then you must type
1247 another character to specify what to do with this occurrence.
1248 @end table
1250   Some other characters are aliases for the ones listed above: @kbd{y},
1251 @kbd{n} and @kbd{q} are equivalent to @key{SPC}, @key{DEL} and
1252 @key{RET}.
1254   Aside from this, any other character exits the @code{query-replace},
1255 and is then reread as part of a key sequence.  Thus, if you type
1256 @kbd{C-k}, it exits the @code{query-replace} and then kills to end of
1257 line.
1259   To restart a @code{query-replace} once it is exited, use @kbd{C-x
1260 @key{ESC} @key{ESC}}, which repeats the @code{query-replace} because it
1261 used the minibuffer to read its arguments.  @xref{Repetition, C-x ESC
1262 ESC}.
1264   @xref{Operating on Files}, for the Dired @kbd{Q} command which
1265 performs query replace on selected files.  See also @ref{Transforming
1266 File Names}, for Dired commands to rename, copy, or link files by
1267 replacing regexp matches in file names.
1269 @node Other Repeating Search
1270 @section Other Search-and-Loop Commands
1272   Here are some other commands that find matches for a regular
1273 expression.  They all ignore case in matching, if the pattern contains
1274 no upper-case letters and @code{case-fold-search} is non-@code{nil}.
1275 Aside from @code{occur} and its variants, all operate on the text from
1276 point to the end of the buffer, or on the region if it is active.
1278 @findex list-matching-lines
1279 @findex occur
1280 @findex multi-occur
1281 @findex multi-occur-in-matching-buffers
1282 @findex how-many
1283 @findex flush-lines
1284 @findex keep-lines
1286 @table @kbd
1287 @item M-x multi-isearch-buffers
1288 Prompt for one or more buffer names, ending with @key{RET}; then,
1289 begin a multi-buffer incremental search in those buffers.  (If the
1290 search fails in one buffer, the next @kbd{C-s} tries searching the
1291 next specified buffer, and so forth.)  With a prefix argument, prompt
1292 for a regexp and begin a multi-buffer incremental search in buffers
1293 matching that regexp.
1295 @item M-x multi-isearch-buffers-regexp
1296 This command is just like @code{multi-isearch-buffers}, except it
1297 performs an incremental regexp search.
1299 @cindex Occur mode
1300 @cindex mode, Occur
1301 @item M-x occur
1302 Prompt for a regexp, and display a list showing each line in the
1303 buffer that contains a match for it.  To limit the search to part of
1304 the buffer, narrow to that part (@pxref{Narrowing}).  A numeric
1305 argument @var{n} specifies that @var{n} lines of context are to be
1306 displayed before and after each matching line.
1308 @kindex RET @r{(Occur mode)}
1309 @kindex o @r{(Occur mode)}
1310 @kindex C-o @r{(Occur mode)}
1311 In the @file{*Occur*} buffer, you can click on each entry, or move
1312 point there and type @key{RET}, to visit the corresponding position in
1313 the buffer that was searched.  @kbd{o} and @kbd{C-o} display the match
1314 in another window; @kbd{C-o} does not select it.  Alternatively, you
1315 can use the @kbd{C-x `} (@code{next-error}) command to visit the
1316 occurrences one by one (@pxref{Compilation Mode}).
1318 @cindex Occur Edit mode
1319 @cindex mode, Occur Edit
1320 Typing @kbd{e} in the @file{*Occur*} buffer switches to Occur Edit
1321 mode, in which edits made to the entries are also applied to the text
1322 in the originating buffer.  Type @kbd{C-c C-c} to return to Occur
1323 mode.
1325 The command @kbd{M-x list-matching-lines} is a synonym for @kbd{M-x
1326 occur}.
1328 @kindex M-s o
1329 @item M-s o
1330 Run @code{occur} using the search string of the last incremental
1331 string search.  You can also run @kbd{M-s o} when an incremental
1332 search is active; this uses the current search string.
1334 @item M-x multi-occur
1335 This command is just like @code{occur}, except it is able to search
1336 through multiple buffers.  It asks you to specify the buffer names one
1337 by one.
1339 @item M-x multi-occur-in-matching-buffers
1340 This command is similar to @code{multi-occur}, except the buffers to
1341 search are specified by a regular expression that matches visited file
1342 names.  With a prefix argument, it uses the regular expression to
1343 match buffer names instead.
1345 @item M-x how-many
1346 Prompt for a regexp, and print the number of matches for it in the
1347 buffer after point.  If the region is active, this operates on the
1348 region instead.
1350 @item M-x flush-lines
1351 Prompt for a regexp, and delete each line that contains a match for
1352 it, operating on the text after point.  This command deletes the
1353 current line if it contains a match starting after point.  If the
1354 region is active, it operates on the region instead; if a line
1355 partially contained in the region contains a match entirely contained
1356 in the region, it is deleted.
1358 If a match is split across lines, @code{flush-lines} deletes all those
1359 lines.  It deletes the lines before starting to look for the next
1360 match; hence, it ignores a match starting on the same line at which
1361 another match ended.
1363 @item M-x keep-lines
1364 Prompt for a regexp, and delete each line that @emph{does not} contain
1365 a match for it, operating on the text after point.  If point is not at
1366 the beginning of a line, this command always keeps the current line.
1367 If the region is active, the command operates on the region instead;
1368 it never deletes lines that are only partially contained in the region
1369 (a newline that ends a line counts as part of that line).
1371 If a match is split across lines, this command keeps all those lines.
1372 @end table