]> code.delx.au - gnu-emacs/blob - doc/emacs/search.texi
* building.texi (Watch Expressions): Fix typo.
[gnu-emacs] / doc / emacs / search.texi
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, 2002,
3 @c 2003, 2004, 2005, 2006, 2007, 2008 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
9
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.
14
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}).
19
20
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
33
34 @node Incremental Search
35 @section Incremental Search
36 @cindex incremental search
37 @cindex isearch
38
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}.
46
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
53
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 * Slow Isearch:: Incremental search features for slow terminals.
64 @end menu
65
66 @node Basic Isearch
67 @subsection Basics of Incremental Search
68
69 @table @kbd
70 @item C-s
71 Begin incremental search (@code{isearch-forward}).
72 @item C-r
73 Begin reverse incremental search (@code{isearch-backward}).
74 @end table
75
76 @kindex C-s
77 @findex isearch-forward
78 @kbd{C-s} (@code{isearch-forward}) starts a forward incremental
79 search. It reads characters from the keyboard, and moves point just
80 past the end of the next occurrence of those characters in the buffer.
81
82 For instance, if you type @kbd{C-s} and then @kbd{F}, that puts the
83 cursor after the first @samp{F} that occurs in the buffer after the
84 starting point. Then if you then type @kbd{O}, the cursor moves to
85 just after the first @samp{FO}; the @samp{F} in that @samp{FO} might
86 not be the first @samp{F} previously found. After another @kbd{O},
87 the cursor moves to just after the first @samp{FOO}.
88
89 @cindex faces for highlighting search matches
90 At each step, Emacs highlights the @dfn{current match}---the buffer
91 text that matches the search string---using the @code{isearch} face
92 (@pxref{Faces}). The current search string is also displayed in the
93 echo area.
94
95 If you make a mistake typing the search string, type @key{DEL}.
96 Each @key{DEL} cancels the last character of the search string.
97
98 When you are satisfied with the place you have reached, type
99 @key{RET}. This stops searching, leaving the cursor where the search
100 brought it. Also, any command not specially meaningful in searches
101 stops the searching and is then executed. Thus, typing @kbd{C-a}
102 exits the search and then moves to the beginning of the line.
103 @key{RET} is necessary only if the next command you want to type is a
104 printing character, @key{DEL}, @key{RET}, or another character that is
105 special within searches (@kbd{C-q}, @kbd{C-w}, @kbd{C-r}, @kbd{C-s},
106 @kbd{C-y}, @kbd{M-y}, @kbd{M-r}, @kbd{M-c}, @kbd{M-e}, and some others
107 described below).
108
109 As a special exception, entering @key{RET} when the search string is
110 empty launches nonincremental search (@pxref{Nonincremental Search}).
111
112 When you exit the incremental search, it adds the original value of
113 point to the mark ring, without activating the mark; you can thus use
114 @kbd{C-u C-@key{SPC}} to return to where you were before beginning the
115 search. @xref{Mark Ring}. It only does this if the mark was not
116 already active.
117
118 @kindex C-r
119 @findex isearch-backward
120 To search backwards, use @kbd{C-r} (@code{isearch-backward}) instead
121 of @kbd{C-s} to start the search. A backward search finds matches
122 that end before the starting point, just as a forward search finds
123 matches that begin after it.
124
125 @node Repeat Isearch
126 @subsection Repeating Incremental Search
127
128 Suppose you search forward for @samp{FOO} and find a match, but not
129 the one you expected to find: the @samp{FOO} you were aiming for
130 occurs later in the buffer. In this event, type another @kbd{C-s} to
131 move to the next occurrence of the search string. You can repeat this
132 any number of times. If you overshoot, you can cancel some @kbd{C-s}
133 characters with @key{DEL}. Similarly, each @kbd{C-r} in a backward
134 incremental search repeats the backward search.
135
136 @cindex lazy search highlighting
137 @vindex isearch-lazy-highlight
138 If you pause for a little while during incremental search, Emacs
139 highlights all the other possible matches for the search string that
140 are present on the screen. This helps you anticipate where you can
141 get to by typing @kbd{C-s} or @kbd{C-r} to repeat the search. The
142 other matches are highlighted differently from the current match,
143 using the customizable face @code{lazy-highlight} (@pxref{Faces}). If
144 you don't like this feature, you can disable it by setting
145 @code{isearch-lazy-highlight} to @code{nil}.
146
147 After exiting a search, you can search for the same string again by
148 typing just @kbd{C-s C-s}. The first @kbd{C-s} is the key that
149 invokes incremental search, and the second @kbd{C-s} means ``search
150 again.'' Similarly, @kbd{C-r C-r} searches backward for the last
151 search string. In determining the last search string, it doesn't
152 matter whether the string was searched for with @kbd{C-s} or
153 @kbd{C-r}.
154
155 If you are searching forward but you realize you were looking for
156 something before the starting point, type @kbd{C-r} to switch to a
157 backward search, leaving the search string unchanged. Similarly,
158 @kbd{C-s} in a backward search switches to a forward search.
159
160 If a search is failing and you ask to repeat it by typing another
161 @kbd{C-s}, it starts again from the beginning of the buffer.
162 Repeating a failing reverse search with @kbd{C-r} starts again from
163 the end. This is called @dfn{wrapping around}, and @samp{Wrapped}
164 appears in the search prompt once this has happened. If you keep on
165 going past the original starting point of the search, it changes to
166 @samp{Overwrapped}, which means that you are revisiting matches that
167 you have already seen.
168
169 @cindex search ring
170 To reuse earlier search strings, use the @dfn{search ring}. The
171 commands @kbd{M-p} and @kbd{M-n} move through the ring to pick a
172 search string to reuse. These commands leave the selected search ring
173 element in the minibuffer, where you can edit it. To edit the current
174 search string in the minibuffer without replacing it with items from
175 the search ring, type @kbd{M-e}. Type @kbd{C-s} or @kbd{C-r} to
176 terminate editing the string and search for it.
177
178 @node Error in Isearch
179 @subsection Errors in Incremental Search
180
181 If your string is not found at all, the echo area says @samp{Failing
182 I-Search}. The cursor is after the place where Emacs found as much of
183 your string as it could. Thus, if you search for @samp{FOOT}, and
184 there is no @samp{FOOT}, you might see the cursor after the @samp{FOO}
185 in @samp{FOOL}. In the echo area, the part of the search string that
186 failed to match is highlighted using the customizable face
187 @code{isearch-fail}.
188
189 At this point, there are several things you can do. If your string
190 was mistyped, you can use @key{DEL} to erase some of it and correct
191 it. If you like the place you have found, you can type @key{RET} to
192 remain there. Or you can type @kbd{C-g}, which removes from the
193 search string the characters that could not be found (the @samp{T} in
194 @samp{FOOT}), leaving those that were found (the @samp{FOO} in
195 @samp{FOOT}). A second @kbd{C-g} at that point cancels the search
196 entirely, returning point to where it was when the search started.
197
198 @cindex quitting (in search)
199 The quit command, @kbd{C-g}, does special things during searches;
200 just what it does depends on the status of the search. If the search
201 has found what you specified and is waiting for input, @kbd{C-g}
202 cancels the entire search, moving the cursor back to where you started
203 the search. If @kbd{C-g} is typed when there are characters in the
204 search string that have not been found---because Emacs is still
205 searching for them, or because it has failed to find them---then the
206 search string characters which have not been found are discarded from
207 the search string. With them gone, the search is now successful and
208 waiting for more input, so a second @kbd{C-g} will cancel the entire
209 search.
210
211 @node Special Isearch
212 @subsection Special Input for Incremental Search
213
214 Some of the characters you type during incremental search have
215 special effects.
216
217 If the search string you entered contains only lower-case letters,
218 the search is case-insensitive; as long as an upper-case letter exists
219 in the search string, the search becomes case-sensitive. If you
220 delete the upper-case character from the search string, it ceases to
221 have this effect. @xref{Search Case}.
222
223 To search for a newline character, type @kbd{C-j}.
224
225 To search for other control characters, such as @key{control-S},
226 quote it by typing @kbd{C-q} first (@pxref{Inserting Text}). To
227 search for non-@acronym{ASCII} characters, you can either use
228 @kbd{C-q} and enter its octal code, or use an input method
229 (@pxref{Input Methods}). If an input method is enabled in the current
230 buffer when you start the search, you can use it in the search string
231 also. While typing the search string, you can toggle the input method
232 with the command @kbd{C-\} (@code{isearch-toggle-input-method}). You
233 can also turn on a non-default input method with @kbd{C-^}
234 (@code{isearch-toggle-specified-input-method}), which prompts for the
235 name of the input method. When an input method is active during
236 incremental search, the search prompt includes the input method
237 mnemonic, like this:
238
239 @example
240 I-search [@var{im}]:
241 @end example
242
243 @noindent
244 @findex isearch-toggle-input-method
245 @findex isearch-toggle-specified-input-method
246 where @var{im} is the mnemonic of the active input method. Any input
247 method you enable during incremental search remains enabled in the
248 current buffer afterwards.
249
250 @kindex M-% @r{(Incremental search)}
251 Typing @kbd{M-%} in incremental search invokes @code{query-replace}
252 or @code{query-replace-regexp} (depending on search mode) with the
253 current search string used as the string to replace. @xref{Query
254 Replace}.
255
256 @kindex M-TAB @r{(Incremental search)}
257 Typing @kbd{M-@key{TAB}} in incremental search invokes
258 @code{isearch-complete}, which attempts to complete the search string
259 using the search ring as a list of completion alternatives.
260 @xref{Completion}. In many operating systems, the @kbd{M-@key{TAB}}
261 key sequence is captured by the window manager; you then need to
262 rebind @code{isearch-complete} to another key sequence if you want to
263 use it (@pxref{Rebinding}).
264
265 @vindex isearch-mode-map
266 When incremental search is active, you can type @kbd{C-h C-h} to
267 access interactive help options, including a list of special
268 keybindings. These keybindings are part of the keymap
269 @code{isearch-mode-map} (@pxref{Keymaps}).
270
271 @node Isearch Yank
272 @subsection Isearch Yanking
273
274 Within incremental search, you can use @kbd{C-w} and @kbd{C-y} to grab
275 text from the buffer into the search string. This makes it convenient
276 to search for another occurrence of text at point.
277
278 @kbd{C-w} copies the character or word after point and adds it to
279 the search string, advancing point over it. (The decision, whether to
280 copy a character or a word, is heuristic.)
281
282 @kbd{C-y} is similar to @kbd{C-w} but copies all the rest of the
283 current line into the search string. If point is already at the end
284 of a line, it grabs the entire next line. If the search is currently
285 case-insensitive, both @kbd{C-y} and @kbd{C-w} convert the text they
286 copy to lower case, so that the search remains case-insensitive.
287
288 @kbd{C-M-w} and @kbd{C-M-y} modify the search string by only one
289 character at a time: @kbd{C-M-w} deletes the last character from the
290 search string and @kbd{C-M-y} copies the character after point to the
291 end of the search string. An alternative method to add the character
292 after point into the search string is to enter the minibuffer by
293 @kbd{M-e} and to type @kbd{C-f} at the end of the search string in the
294 minibuffer.
295
296 The character @kbd{M-y} copies text from the kill ring into the
297 search string. It uses the same text that @kbd{C-y} would yank.
298 @kbd{Mouse-2} in the echo area does the same. @xref{Yanking}.
299
300 @node Isearch Scroll
301 @subsection Scrolling During Incremental Search
302
303 You can enable the use of vertical scrolling during incremental
304 search (without exiting the search) by setting the customizable
305 variable @code{isearch-allow-scroll} to a non-@code{nil} value. This
306 applies to using the vertical scroll-bar and to certain keyboard
307 commands such as @kbd{@key{PRIOR}} (@code{scroll-down}),
308 @kbd{@key{NEXT}} (@code{scroll-up}) and @kbd{C-l} (@code{recenter}).
309 You must run these commands via their key sequences to stay in the
310 search---typing @kbd{M-x} will terminate the search. You can give
311 prefix arguments to these commands in the usual way.
312
313 This feature won't let you scroll the current match out of visibility,
314 however.
315
316 The feature also affects some other commands, such as @kbd{C-x 2}
317 (@code{split-window-vertically}) and @kbd{C-x ^}
318 (@code{enlarge-window}) which don't exactly scroll but do affect where
319 the text appears on the screen. In general, it applies to any command
320 whose name has a non-@code{nil} @code{isearch-scroll} property. So you
321 can control which commands are affected by changing these properties.
322
323 For example, to make @kbd{C-h l} usable within an incremental search
324 in all future Emacs sessions, use @kbd{C-h c} to find what command it
325 runs. (You type @kbd{C-h c C-h l}; it says @code{view-lossage}.)
326 Then you can put the following line in your @file{.emacs} file
327 (@pxref{Init File}):
328
329 @example
330 (put 'view-lossage 'isearch-scroll t)
331 @end example
332
333 @noindent
334 This feature can be applied to any command that doesn't permanently
335 change point, the buffer contents, the match data, the current buffer,
336 or the selected window and frame. The command must not itself attempt
337 an incremental search.
338
339 @node Isearch Minibuffer
340 @subsection Searching the Minibuffer
341 @cindex minibuffer history, searching
342
343 If you start an incremental search while the minibuffer is active,
344 Emacs searches the contents of the minibuffer. Unlike searching an
345 ordinary buffer, the search string is not shown in the echo area,
346 because that is used to display the minibuffer.
347
348 If an incremental search fails in the minibuffer, it tries searching
349 the minibuffer history. @xref{Minibuffer History}. You can visualize
350 the minibuffer and its history as a series of ``pages'', with the
351 earliest history element on the first page and the current minibuffer
352 on the last page. A forward search, @kbd{C-s}, searches forward to
353 later pages; a reverse search, @kbd{C-r}, searches backwards to
354 earlier pages. Like in ordinary buffer search, a failing search can
355 wrap around, going from the last page to the first page or vice versa.
356
357 When the current match is on a history element, that history element
358 is pulled into the minibuffer. If you exit the incremental search
359 normally (e.g. by typing @key{RET}), it remains in the minibuffer
360 afterwards. Cancelling the search, with @kbd{C-g}, restores the
361 contents of the minibuffer when you began the search.
362
363 @node Slow Isearch
364 @subsection Slow Terminal Incremental Search
365
366 Incremental search on a slow terminal uses a modified style of display
367 that is designed to take less time. Instead of redisplaying the buffer at
368 each place the search gets to, it creates a new single-line window and uses
369 that to display the line that the search has found. The single-line window
370 comes into play as soon as point moves outside of the text that is already
371 on the screen.
372
373 When you terminate the search, the single-line window is removed.
374 Emacs then redisplays the window in which the search was done, to show
375 its new position of point.
376
377 @vindex search-slow-speed
378 The slow terminal style of display is used when the terminal baud rate is
379 less than or equal to the value of the variable @code{search-slow-speed},
380 initially 1200. See also the discussion of the variable @code{baud-rate}
381 (@pxref{baud-rate,, Customization of Display}).
382
383 @vindex search-slow-window-lines
384 The number of lines to use in slow terminal search display is controlled
385 by the variable @code{search-slow-window-lines}. Its normal value is 1.
386
387 @node Nonincremental Search
388 @section Nonincremental Search
389 @cindex nonincremental search
390
391 Emacs also has conventional nonincremental search commands, which require
392 you to type the entire search string before searching begins.
393
394 @table @kbd
395 @item C-s @key{RET} @var{string} @key{RET}
396 Search for @var{string}.
397 @item C-r @key{RET} @var{string} @key{RET}
398 Search backward for @var{string}.
399 @end table
400
401 To start a nonincremental search, first type @kbd{C-s @key{RET}}.
402 This enters the minibuffer to read the search string; terminate the
403 string with @key{RET}, and then the search takes place. If the string
404 is not found, the search command signals an error.
405
406 When you type @kbd{C-s @key{RET}}, the @kbd{C-s} invokes incremental
407 search as usual. That command is specially programmed to invoke
408 nonincremental search, @code{search-forward}, if the string you
409 specify is empty. (Such an empty argument would otherwise be
410 useless.) @kbd{C-r @key{RET}} does likewise, for a reverse
411 incremental search.
412
413 @findex search-forward
414 @findex search-backward
415 Forward and backward nonincremental searches are implemented by the
416 commands @code{search-forward} and @code{search-backward}. These
417 commands may be bound to other keys in the usual manner.
418
419 @node Word Search
420 @section Word Search
421 @cindex word search
422
423 A @dfn{word search} finds a sequence of words without regard to the
424 type of punctuation between them. For instance, if you enter a search
425 string that consists of two words separated by a single space, the
426 search matches any sequence of those two words separated by one or
427 more spaces, newlines, or other punctuation characters. This is
428 particularly useful for searching text documents, because you don't
429 have to worry whether the words you are looking for are separated by
430 newlines or spaces.
431
432 @table @kbd
433 @item M-s w
434 If incremental search is active, toggle word search mode
435 (@code{isearch-toggle-word}); otherwise, begin an incremental forward
436 word search (@code{isearch-forward-word}).
437 @item C-s @key{RET} C-w
438 Begin a non-incremental forward word search.
439 @item C-r @key{RET} C-w
440 Begin a non-incremental backward word search.
441 @end table
442
443 To begin a forward incremental word search, type @kbd{M-s w}. If
444 incremental search is not already active, this runs the command
445 @code{isearch-forward-word}. If incremental search is already active
446 (whether a forward or backward search), @kbd{M-s w} switches to a word
447 search while keeping the direction of the search and the current
448 search string unchanged. You can toggle word search back off by
449 typing @kbd{M-s w} again.
450
451 @findex word-search-forward
452 @findex word-search-backward
453 To begin a nonincremental word search, type @kbd{C-s @key{RET} C-w}
454 for a forward search or @kbd{C-r @key{RET} C-w} for a forward search.
455 These run the commands @code{word-search-forward} and
456 @code{word-search-backward} respectively.
457
458 A nonincremental word search differs slightly from the incremental
459 version in the way it finds a match: the last word in the search
460 string must be an exact match for a whole word. In an incremental
461 word search, the last word in the search string can match part of a
462 word; this allows the matching to proceed incrementally as you type.
463
464 @node Regexp Search
465 @section Regular Expression Search
466 @cindex regular expression
467 @cindex regexp
468
469 A @dfn{regular expression} (or @dfn{regexp} for short) is a pattern
470 that denotes a class of alternative strings to match. GNU Emacs
471 provides both incremental and nonincremental ways to search for a
472 match for a regexp. The syntax of regular expressions is explained in
473 the following section.
474
475 @kindex C-M-s
476 @findex isearch-forward-regexp
477 @kindex C-M-r
478 @findex isearch-backward-regexp
479 Incremental search for a regexp is done by typing @kbd{C-M-s}
480 (@code{isearch-forward-regexp}), by invoking @kbd{C-s} with a
481 prefix argument (whose value does not matter), or by typing @kbd{M-r}
482 within a forward incremental search. This command reads a
483 search string incrementally just like @kbd{C-s}, but it treats the
484 search string as a regexp rather than looking for an exact match
485 against the text in the buffer. Each time you add text to the search
486 string, you make the regexp longer, and the new regexp is searched
487 for. To search backward for a regexp, use @kbd{C-M-r}
488 (@code{isearch-backward-regexp}), @kbd{C-r} with a prefix argument,
489 or @kbd{M-r} within a backward incremental search.
490
491 All of the special key sequences in an ordinary incremental search
492 do similar things in an incremental regexp search. For instance,
493 typing @kbd{C-s} immediately after starting the search retrieves the
494 last incremental search regexp used and searches forward for it.
495 Incremental regexp and non-regexp searches have independent defaults.
496 They also have separate search rings, which you can access with
497 @kbd{M-p} and @kbd{M-n}.
498
499 @vindex search-whitespace-regexp
500 If you type @key{SPC} in incremental regexp search, it matches any
501 sequence of whitespace characters, including newlines. If you want to
502 match just a space, type @kbd{C-q @key{SPC}}. You can control what a
503 bare space matches by setting the variable
504 @code{search-whitespace-regexp} to the desired regexp.
505
506 In some cases, adding characters to the regexp in an incremental
507 regexp search can make the cursor move back and start again. For
508 example, if you have searched for @samp{foo} and you add @samp{\|bar},
509 the cursor backs up in case the first @samp{bar} precedes the first
510 @samp{foo}. @xref{Regexps}.
511
512 Forward and backward regexp search are not symmetrical, because
513 regexp matching in Emacs always operates forward, starting with the
514 beginning of the regexp. Thus, forward regexp search scans forward,
515 trying a forward match at each possible starting position. Backward
516 regexp search scans backward, trying a forward match at each possible
517 starting position. These search methods are not mirror images.
518
519 @findex re-search-forward
520 @findex re-search-backward
521 Nonincremental search for a regexp is done by the functions
522 @code{re-search-forward} and @code{re-search-backward}. You can
523 invoke these with @kbd{M-x}, or by way of incremental regexp search
524 with @kbd{C-M-s @key{RET}} and @kbd{C-M-r @key{RET}}.
525
526 If you use the incremental regexp search commands with a prefix
527 argument, they perform ordinary string search, like
528 @code{isearch-forward} and @code{isearch-backward}. @xref{Incremental
529 Search}.
530
531 @node Regexps
532 @section Syntax of Regular Expressions
533 @cindex syntax of regexps
534
535 This manual describes regular expression features that users
536 typically want to use. There are additional features that are
537 mainly used in Lisp programs; see @ref{Regular Expressions,,,
538 elisp, The Emacs Lisp Reference Manual}.
539
540 Regular expressions have a syntax in which a few characters are
541 special constructs and the rest are @dfn{ordinary}. An ordinary
542 character is a simple regular expression which matches that same
543 character and nothing else. The special characters are @samp{$},
544 @samp{^}, @samp{.}, @samp{*}, @samp{+}, @samp{?}, @samp{[}, and
545 @samp{\}. The character @samp{]} is special if it ends a character
546 alternative (see later). The character @samp{-} is special inside a
547 character alternative. Any other character appearing in a regular
548 expression is ordinary, unless a @samp{\} precedes it. (When you use
549 regular expressions in a Lisp program, each @samp{\} must be doubled,
550 see the example near the end of this section.)
551
552 For example, @samp{f} is not a special character, so it is ordinary, and
553 therefore @samp{f} is a regular expression that matches the string
554 @samp{f} and no other string. (It does @emph{not} match the string
555 @samp{ff}.) Likewise, @samp{o} is a regular expression that matches
556 only @samp{o}. (When case distinctions are being ignored, these regexps
557 also match @samp{F} and @samp{O}, but we consider this a generalization
558 of ``the same string,'' rather than an exception.)
559
560 Any two regular expressions @var{a} and @var{b} can be concatenated. The
561 result is a regular expression which matches a string if @var{a} matches
562 some amount of the beginning of that string and @var{b} matches the rest of
563 the string.@refill
564
565 As a simple example, we can concatenate the regular expressions @samp{f}
566 and @samp{o} to get the regular expression @samp{fo}, which matches only
567 the string @samp{fo}. Still trivial. To do something nontrivial, you
568 need to use one of the special characters. Here is a list of them.
569
570 @table @asis
571 @item @kbd{.}@: @r{(Period)}
572 is a special character that matches any single character except a newline.
573 Using concatenation, we can make regular expressions like @samp{a.b}, which
574 matches any three-character string that begins with @samp{a} and ends with
575 @samp{b}.@refill
576
577 @item @kbd{*}
578 is not a construct by itself; it is a postfix operator that means to
579 match the preceding regular expression repetitively as many times as
580 possible. Thus, @samp{o*} matches any number of @samp{o}s (including no
581 @samp{o}s).
582
583 @samp{*} always applies to the @emph{smallest} possible preceding
584 expression. Thus, @samp{fo*} has a repeating @samp{o}, not a repeating
585 @samp{fo}. It matches @samp{f}, @samp{fo}, @samp{foo}, and so on.
586
587 The matcher processes a @samp{*} construct by matching, immediately,
588 as many repetitions as can be found. Then it continues with the rest
589 of the pattern. If that fails, backtracking occurs, discarding some
590 of the matches of the @samp{*}-modified construct in case that makes
591 it possible to match the rest of the pattern. For example, in matching
592 @samp{ca*ar} against the string @samp{caaar}, the @samp{a*} first
593 tries to match all three @samp{a}s; but the rest of the pattern is
594 @samp{ar} and there is only @samp{r} left to match, so this try fails.
595 The next alternative is for @samp{a*} to match only two @samp{a}s.
596 With this choice, the rest of the regexp matches successfully.@refill
597
598 @item @kbd{+}
599 is a postfix operator, similar to @samp{*} except that it must match
600 the preceding expression at least once. So, for example, @samp{ca+r}
601 matches the strings @samp{car} and @samp{caaaar} but not the string
602 @samp{cr}, whereas @samp{ca*r} matches all three strings.
603
604 @item @kbd{?}
605 is a postfix operator, similar to @samp{*} except that it can match the
606 preceding expression either once or not at all. For example,
607 @samp{ca?r} matches @samp{car} or @samp{cr}; nothing else.
608
609 @item @kbd{*?}, @kbd{+?}, @kbd{??}
610 @cindex non-greedy regexp matching
611 are non-greedy variants of the operators above. The normal operators
612 @samp{*}, @samp{+}, @samp{?} are @dfn{greedy} in that they match as
613 much as they can, as long as the overall regexp can still match. With
614 a following @samp{?}, they are non-greedy: they will match as little
615 as possible.
616
617 Thus, both @samp{ab*} and @samp{ab*?} can match the string @samp{a}
618 and the string @samp{abbbb}; but if you try to match them both against
619 the text @samp{abbb}, @samp{ab*} will match it all (the longest valid
620 match), while @samp{ab*?} will match just @samp{a} (the shortest
621 valid match).
622
623 Non-greedy operators match the shortest possible string starting at a
624 given starting point; in a forward search, though, the earliest
625 possible starting point for match is always the one chosen. Thus, if
626 you search for @samp{a.*?$} against the text @samp{abbab} followed by
627 a newline, it matches the whole string. Since it @emph{can} match
628 starting at the first @samp{a}, it does.
629
630 @item @kbd{\@{@var{n}\@}}
631 is a postfix operator that specifies repetition @var{n} times---that
632 is, the preceding regular expression must match exactly @var{n} times
633 in a row. For example, @samp{x\@{4\@}} matches the string @samp{xxxx}
634 and nothing else.
635
636 @item @kbd{\@{@var{n},@var{m}\@}}
637 is a postfix operator that specifies repetition between @var{n} and
638 @var{m} times---that is, the preceding regular expression must match
639 at least @var{n} times, but no more than @var{m} times. If @var{m} is
640 omitted, then there is no upper limit, but the preceding regular
641 expression must match at least @var{n} times.@* @samp{\@{0,1\@}} is
642 equivalent to @samp{?}. @* @samp{\@{0,\@}} is equivalent to
643 @samp{*}. @* @samp{\@{1,\@}} is equivalent to @samp{+}.
644
645 @item @kbd{[ @dots{} ]}
646 is a @dfn{character set}, which begins with @samp{[} and is terminated
647 by @samp{]}. In the simplest case, the characters between the two
648 brackets are what this set can match.
649
650 Thus, @samp{[ad]} matches either one @samp{a} or one @samp{d}, and
651 @samp{[ad]*} matches any string composed of just @samp{a}s and @samp{d}s
652 (including the empty string), from which it follows that @samp{c[ad]*r}
653 matches @samp{cr}, @samp{car}, @samp{cdr}, @samp{caddaar}, etc.
654
655 You can also include character ranges in a character set, by writing the
656 starting and ending characters with a @samp{-} between them. Thus,
657 @samp{[a-z]} matches any lower-case @acronym{ASCII} letter. Ranges may be
658 intermixed freely with individual characters, as in @samp{[a-z$%.]},
659 which matches any lower-case @acronym{ASCII} letter or @samp{$}, @samp{%} or
660 period.
661
662 Note that the usual regexp special characters are not special inside a
663 character set. A completely different set of special characters exists
664 inside character sets: @samp{]}, @samp{-} and @samp{^}.
665
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{-}.
671
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.)
674
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.
679
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.
684
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).
688
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}.
692
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.
698
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{\|}.
702
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.
706
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{\|}.
710
711 @item @kbd{\}
712 has two functions: it quotes the special characters (including
713 @samp{\}), and it introduces additional special constructs.
714
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.
718
719 See the following section for the special constructs that begin
720 with @samp{\}.
721 @end table
722
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.
729
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.
737
738 @node Regexp Backslash
739 @section Backslash in Regular Expressions
740
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.
746
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}.
753
754 Thus, @samp{foo\|bar} matches either @samp{foo} or @samp{bar}
755 but no other string.@refill
756
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
760
761 Full backtracking capability exists to handle multiple uses of @samp{\|}.
762
763 @item \( @dots{} \)
764 is a grouping construct that serves three purposes:
765
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}.
770
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
776
777 @item
778 To record a matched substring for future reference.
779 @end enumerate
780
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.
786
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.
794
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}.
800
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.''
806
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.
812
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.
817
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.
821
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.
825
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.
829
830 @item \=
831 matches the empty string, but only at point.
832
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
838
839 @samp{\b} matches at the beginning or end of the buffer
840 regardless of what text appears next to it.
841
842 @item \B
843 matches the empty string, but @emph{not} at the beginning or
844 end of a word.
845
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.
850
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.
855
856 @item \w
857 matches any word-constituent character. The syntax table
858 determines which characters these are. @xref{Syntax}.
859
860 @item \W
861 matches any character that is not a word-constituent.
862
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.
869
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.
874
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}.
880
881 @item \S@var{c}
882 matches any character whose syntax is not @var{c}.
883
884 @cindex categories of characters
885 @cindex characters which belong to a specific language
886 @findex describe-categories
887 @item \c@var{c}
888 matches any character that belongs to the category @var{c}. For
889 example, @samp{\cc} matches Chinese characters, @samp{\cg} matches
890 Greek characters, etc. For the description of the known categories,
891 type @kbd{M-x describe-categories @key{RET}}.
892
893 @item \C@var{c}
894 matches any character that does @emph{not} belong to category
895 @var{c}.
896 @end table
897
898 The constructs that pertain to words and syntax are controlled by the
899 setting of the syntax table (@pxref{Syntax}).
900
901 @node Regexp Example
902 @section Regular Expression Example
903
904 Here is an example of a regexp---the regexp that Emacs uses, by
905 default, to recognize the end of a sentence, not including the
906 following space (i.e., the variable @code{sentence-end-base}):
907
908 @example
909 @verbatim
910 [.?!][]\"'””)}]*
911 @end verbatim
912 @end example
913
914 @noindent
915 This contains two parts in succession: a character set matching
916 period, @samp{?}, or @samp{!}, and a character set matching
917 close-brackets, quotes, or parentheses, repeated zero or more times.
918
919 @node Search Case
920 @section Searching and Case
921
922 Searches in Emacs normally ignore the case of the text they are
923 searching through, if you specify the text in lower case. Thus, if
924 you specify searching for @samp{foo}, then @samp{Foo} and @samp{foo}
925 are also considered a match. Regexps, and in particular character
926 sets, are included: @samp{[ab]} would match @samp{a} or @samp{A} or
927 @samp{b} or @samp{B}.@refill
928
929 An upper-case letter anywhere in the incremental search string makes
930 the search case-sensitive. Thus, searching for @samp{Foo} does not find
931 @samp{foo} or @samp{FOO}. This applies to regular expression search as
932 well as to string search. The effect ceases if you delete the
933 upper-case letter from the search string.
934
935 Typing @kbd{M-c} within an incremental search toggles the case
936 sensitivity of that search. The effect does not extend beyond the
937 current incremental search to the next one, but it does override the
938 effect of adding or removing an upper-case letter in the current
939 search.
940
941 @vindex case-fold-search
942 @vindex default-case-fold-search
943 If you set the variable @code{case-fold-search} to @code{nil}, then
944 all letters must match exactly, including case. This is a per-buffer
945 variable; altering the variable affects only the current buffer, but
946 there is a default value in @code{default-case-fold-search} that you
947 can also set. @xref{Locals}. This variable applies to nonincremental
948 searches also, including those performed by the replace commands
949 (@pxref{Replace}) and the minibuffer history matching commands
950 (@pxref{Minibuffer History}).
951
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}}.
957
958 @node Replace
959 @section Replacement Commands
960 @cindex replacement
961 @cindex search-and-replace commands
962 @cindex string substitution
963 @cindex global substitution
964
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.
969
970 The replace commands normally operate on the text from point to the
971 end of the buffer. When the mark is active, they operate on the
972 region 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}).
976
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
983
984 @node Unconditional Replace, Regexp Replace, Replace, Replace
985 @subsection Unconditional Replacement
986 @findex replace-string
987
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
992
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}).
1001
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}.
1007
1008 A prefix argument restricts replacement to matches that are
1009 surrounded by word boundaries. The argument's value doesn't matter.
1010
1011 @xref{Replacement and Case}, for details about case-sensitivity in
1012 replace commands.
1013
1014 @node Regexp Replace, Replacement and Case, Unconditional Replace, Replace
1015 @subsection Regexp Replacement
1016 @findex replace-regexp
1017
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.
1021
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
1026
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,
1038
1039 @example
1040 M-x replace-regexp @key{RET} c[ad]+r @key{RET} \&-safe @key{RET}
1041 @end example
1042
1043 @noindent
1044 replaces (for example) @samp{cadr} with @samp{cadr-safe} and @samp{cddr}
1045 with @samp{cddr-safe}.
1046
1047 @example
1048 M-x replace-regexp @key{RET} \(c[ad]+r\)-safe @key{RET} \1 @key{RET}
1049 @end example
1050
1051 @noindent
1052 performs the inverse transformation. To include a @samp{\} in the
1053 text to replace with, you must enter @samp{\\}.
1054
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.
1059
1060 The remainder of this subsection is intended for specialized tasks
1061 and requires knowledge of Lisp. Most readers can skip it.
1062
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.
1072
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.
1081
1082 Repeating our example to exchange @samp{x} and @samp{y}, we can thus
1083 do it also this way:
1084
1085 @example
1086 M-x replace-regexp @key{RET} \(x\)\|y @key{RET}
1087 \,(if \1 "y" "x") @key{RET}
1088 @end example
1089
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
1095
1096 @example
1097 M-x replace-regexp @key{RET} ^.\@{0,72\@}$ @key{RET}
1098 \,(format "%-72sABC%05d" \& \#) @key{RET}
1099 @end example
1100
1101 @node Replacement and Case, Query Replace, Regexp Replace, Replace
1102 @subsection Replace Commands and Case
1103
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.
1109
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
1114
1115 @example
1116 M-x replace-string @key{RET} foo @key{RET} bar @key{RET}
1117 @end example
1118
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.)
1125
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.
1132
1133 @node Query Replace,, Replacement and Case, Replace
1134 @subsection Query Replace
1135 @cindex query replace
1136
1137 @table @kbd
1138 @item M-% @var{string} @key{RET} @var{newstring} @key{RET}
1139 @itemx M-x query-replace @key{RET} @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 @itemx M-x query-replace-regexp @key{RET} @var{regexp} @key{RET} @var{newstring} @key{RET}
1143 Replace some matches for @var{regexp} with @var{newstring}.
1144 @end table
1145
1146 @kindex M-%
1147 @findex query-replace
1148 If you want to change only some of the occurrences of @samp{foo} to
1149 @samp{bar}, not all of them, use @kbd{M-%} (@code{query-replace}).
1150 This command finds occurrences of @samp{foo} one by one, displays each
1151 occurrence and asks you whether to replace it. Aside from querying,
1152 @code{query-replace} works just like @code{replace-string}
1153 (@pxref{Unconditional Replace}). In particular, it preserves case
1154 provided @code{case-replace} is non-@code{nil}, as it normally is
1155 (@pxref{Replacement and Case}). A numeric argument means consider
1156 only occurrences that are bounded by word-delimiter characters.
1157
1158 @kindex C-M-%
1159 @findex query-replace-regexp
1160 @kbd{C-M-%} performs regexp search and replace (@code{query-replace-regexp}).
1161 It works like @code{replace-regexp} except that it queries
1162 like @code{query-replace}.
1163
1164 @cindex faces for highlighting query replace
1165 These commands highlight the current match using the face
1166 @code{query-replace}. They highlight other matches using
1167 @code{lazy-highlight} just like incremental search (@pxref{Incremental
1168 Search}). By default, @code{query-replace-regexp} will show
1169 substituted replacement string for the current match in the
1170 minibuffer. If you want to keep special sequences @samp{\&} and
1171 @samp{\@var{n}} unexpanded, customize
1172 @code{query-replace-show-replacement} variable.
1173
1174 The characters you can type when you are shown a match for the string
1175 or regexp are:
1176
1177 @ignore @c Not worth it.
1178 @kindex SPC @r{(query-replace)}
1179 @kindex DEL @r{(query-replace)}
1180 @kindex , @r{(query-replace)}
1181 @kindex RET @r{(query-replace)}
1182 @kindex . @r{(query-replace)}
1183 @kindex ! @r{(query-replace)}
1184 @kindex ^ @r{(query-replace)}
1185 @kindex C-r @r{(query-replace)}
1186 @kindex C-w @r{(query-replace)}
1187 @kindex C-l @r{(query-replace)}
1188 @end ignore
1189
1190 @c WideCommands
1191 @table @kbd
1192 @item @key{SPC}
1193 to replace the occurrence with @var{newstring}.
1194
1195 @item @key{DEL}
1196 to skip to the next occurrence without replacing this one.
1197
1198 @item , @r{(Comma)}
1199 to replace this occurrence and display the result. You are then asked
1200 for another input character to say what to do next. Since the
1201 replacement has already been made, @key{DEL} and @key{SPC} are
1202 equivalent in this situation; both move to the next occurrence.
1203
1204 You can type @kbd{C-r} at this point (see below) to alter the replaced
1205 text. You can also type @kbd{C-x u} to undo the replacement; this exits
1206 the @code{query-replace}, so if you want to do further replacement you
1207 must use @kbd{C-x @key{ESC} @key{ESC} @key{RET}} to restart
1208 (@pxref{Repetition}).
1209
1210 @item @key{RET}
1211 to exit without doing any more replacements.
1212
1213 @item .@: @r{(Period)}
1214 to replace this occurrence and then exit without searching for more
1215 occurrences.
1216
1217 @item !
1218 to replace all remaining occurrences without asking again.
1219
1220 @item ^
1221 to go back to the position of the previous occurrence (or what used to
1222 be an occurrence), in case you changed it by mistake or want to
1223 reexamine it.
1224
1225 @item C-r
1226 to enter a recursive editing level, in case the occurrence needs to be
1227 edited rather than just replaced with @var{newstring}. When you are
1228 done, exit the recursive editing level with @kbd{C-M-c} to proceed to
1229 the next occurrence. @xref{Recursive Edit}.
1230
1231 @item C-w
1232 to delete the occurrence, and then enter a recursive editing level as in
1233 @kbd{C-r}. Use the recursive edit to insert text to replace the deleted
1234 occurrence of @var{string}. When done, exit the recursive editing level
1235 with @kbd{C-M-c} to proceed to the next occurrence.
1236
1237 @item e
1238 to edit the replacement string in the minibuffer. When you exit the
1239 minibuffer by typing @key{RET}, the minibuffer contents replace the
1240 current occurrence of the pattern. They also become the new
1241 replacement string for any further occurrences.
1242
1243 @item C-l
1244 to redisplay the screen. Then you must type another character to
1245 specify what to do with this occurrence.
1246
1247 @item C-h
1248 to display a message summarizing these options. Then you must type
1249 another character to specify what to do with this occurrence.
1250 @end table
1251
1252 Some other characters are aliases for the ones listed above: @kbd{y},
1253 @kbd{n} and @kbd{q} are equivalent to @key{SPC}, @key{DEL} and
1254 @key{RET}.
1255
1256 Aside from this, any other character exits the @code{query-replace},
1257 and is then reread as part of a key sequence. Thus, if you type
1258 @kbd{C-k}, it exits the @code{query-replace} and then kills to end of
1259 line.
1260
1261 To restart a @code{query-replace} once it is exited, use @kbd{C-x
1262 @key{ESC} @key{ESC}}, which repeats the @code{query-replace} because it
1263 used the minibuffer to read its arguments. @xref{Repetition, C-x ESC
1264 ESC}.
1265
1266 @xref{Operating on Files}, for the Dired @kbd{Q} command which
1267 performs query replace on selected files. See also @ref{Transforming
1268 File Names}, for Dired commands to rename, copy, or link files by
1269 replacing regexp matches in file names.
1270
1271 @node Other Repeating Search
1272 @section Other Search-and-Loop Commands
1273
1274 Here are some other commands that find matches for a regular
1275 expression. They all ignore case in matching, if the pattern contains
1276 no upper-case letters and @code{case-fold-search} is non-@code{nil}.
1277 Aside from @code{occur} and its variants, all operate on the text from
1278 point to the end of the buffer, or on the region if it is active.
1279
1280 @findex list-matching-lines
1281 @findex occur
1282 @findex multi-occur
1283 @findex multi-occur-in-matching-buffers
1284 @findex how-many
1285 @findex flush-lines
1286 @findex keep-lines
1287
1288 @table @kbd
1289 @item M-x occur @key{RET} @var{regexp} @key{RET}
1290 Display a list showing each line in the buffer that contains a match
1291 for @var{regexp}. To limit the search to part of the buffer, narrow
1292 to that part (@pxref{Narrowing}). A numeric argument @var{n}
1293 specifies that @var{n} lines of context are to be displayed before and
1294 after each matching line. Currently, @code{occur} can not correctly
1295 handle multiline matches.
1296
1297 @kindex RET @r{(Occur mode)}
1298 @kindex o @r{(Occur mode)}
1299 @kindex C-o @r{(Occur mode)}
1300 The buffer @samp{*Occur*} containing the output serves as a menu for
1301 finding the occurrences in their original context. Click
1302 @kbd{Mouse-2} on an occurrence listed in @samp{*Occur*}, or position
1303 point there and type @key{RET}; this switches to the buffer that was
1304 searched and moves point to the original of the chosen occurrence.
1305 @kbd{o} and @kbd{C-o} display the match in another window; @kbd{C-o}
1306 does not select it.
1307
1308 After using @kbd{M-x occur}, you can use @code{next-error} to visit
1309 the occurrences found, one by one. @ref{Compilation Mode}.
1310
1311 @kindex M-s o
1312 @item M-s o
1313 Run @code{occur} using the search string of the last incremental
1314 string search. You can also run @kbd{M-s o} which an incremental
1315 search is active; this uses the current search string.
1316
1317 @item M-x list-matching-lines
1318 Synonym for @kbd{M-x occur}.
1319
1320 @item M-x multi-occur @key{RET} @var{buffers} @key{RET} @var{regexp} @key{RET}
1321 This function is just like @code{occur}, except it is able to search
1322 through multiple buffers. It asks you to specify the buffer names one by one.
1323
1324 @item M-x multi-occur-in-matching-buffers @key{RET} @var{bufregexp} @key{RET} @var{regexp} @key{RET}
1325 This function is similar to @code{multi-occur}, except the buffers to
1326 search are specified by a regular expression that matches visited
1327 file names. With a prefix argument, it uses the regular expression to match
1328 buffer names instead.
1329
1330 @item M-x how-many @key{RET} @var{regexp} @key{RET}
1331 Print the number of matches for @var{regexp} that exist in the buffer
1332 after point. If the region is active, this operates on the region
1333 instead.
1334
1335 @item M-x flush-lines @key{RET} @var{regexp} @key{RET}
1336 This command deletes each line that contains a match for @var{regexp},
1337 operating on the text after point; it deletes the current line if it
1338 contains a match starting after point. If the region is active, it
1339 operates on the region instead; if a line partially contained in the
1340 region contains a match entirely contained in the region, it is
1341 deleted.
1342
1343 If a match is split across lines, @code{flush-lines} deletes all those
1344 lines. It deletes the lines before starting to look for the next
1345 match; hence, it ignores a match starting on the same line at which
1346 another match ended.
1347
1348 @item M-x keep-lines @key{RET} @var{regexp} @key{RET}
1349 This command deletes each line that @emph{does not} contain a match
1350 for @var{regexp}, operating on the text after point; if point is not
1351 at the beginning of a line, it always keeps the current line. If the
1352 region is active, the command operates on the region instead; it never
1353 deletes lines that are only partially contained in the region (a
1354 newline that ends a line counts as part of that line).
1355
1356 If a match is split across lines, this command keeps all those lines.
1357 @end table
1358
1359 @ignore
1360 arch-tag: fd9d8e77-66af-491c-b212-d80999613e3e
1361 @end ignore