2007-09-06 04:25:08 +00:00
|
|
|
@c -*-texinfo-*-
|
|
|
|
@c This is part of the GNU Emacs Lisp Reference Manual.
|
2025-01-02 18:32:51 +01:00
|
|
|
@c Copyright (C) 1990--1995, 1998--1999, 2001--2025 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
@c Foundation, Inc.
|
2007-09-06 04:25:08 +00:00
|
|
|
@c See the file elisp.texi for copying conditions.
|
2012-05-26 18:34:14 -07:00
|
|
|
@node Searching and Matching
|
2007-09-06 04:25:08 +00:00
|
|
|
@chapter Searching and Matching
|
|
|
|
@cindex searching
|
|
|
|
|
|
|
|
GNU Emacs provides two ways to search through a buffer for specified
|
|
|
|
text: exact string searches and regular expression searches. After a
|
|
|
|
regular expression search, you can examine the @dfn{match data} to
|
|
|
|
determine which text matched the whole regular expression or various
|
|
|
|
portions of it.
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* String Search:: Search for an exact match.
|
|
|
|
* Searching and Case:: Case-independent or case-significant searching.
|
|
|
|
* Regular Expressions:: Describing classes of strings.
|
|
|
|
* Regexp Search:: Searching for a match for a regexp.
|
2023-06-19 11:09:00 -07:00
|
|
|
* Longest Match:: Searching for the longest match.
|
2007-09-06 04:25:08 +00:00
|
|
|
* Match Data:: Finding out which part of the text matched,
|
|
|
|
after a string or regexp search.
|
Untabify doc/lispref/*.texi.
* abbrevs.texi, commands.texi, compile.texi, debugging.texi:
* display.texi, edebug.texi, elisp.texi, eval.texi, files.texi:
* frames.texi, functions.texi, internals.texi, keymaps.texi:
* loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi:
* searching.texi, sequences.texi, strings.texi, syntax.texi:
* text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi:
Untabify Texinfo files.
2010-06-22 20:36:56 -07:00
|
|
|
* Search and Replace:: Commands that loop, searching and replacing.
|
2007-09-06 04:25:08 +00:00
|
|
|
* Standard Regexps:: Useful regexps for finding sentences, pages,...
|
2023-06-19 11:09:00 -07:00
|
|
|
* POSIX Regexps:: Emacs regexps vs POSIX regexps.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end menu
|
|
|
|
|
|
|
|
The @samp{skip-chars@dots{}} functions also perform a kind of searching.
|
|
|
|
@xref{Skipping Characters}. To search for changes in character
|
|
|
|
properties, see @ref{Property Search}.
|
|
|
|
|
|
|
|
@node String Search
|
|
|
|
@section Searching for Strings
|
|
|
|
@cindex string search
|
|
|
|
|
|
|
|
These are the primitive functions for searching through the text in a
|
|
|
|
buffer. They are meant for use in programs, but you may call them
|
|
|
|
interactively. If you do so, they prompt for the search string; the
|
|
|
|
arguments @var{limit} and @var{noerror} are @code{nil}, and @var{repeat}
|
2012-03-26 23:46:42 -07:00
|
|
|
is 1. For more details on interactive searching, @pxref{Search,,
|
|
|
|
Searching and Replacement, emacs, The GNU Emacs Manual}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
These search functions convert the search string to multibyte if the
|
|
|
|
buffer is multibyte; they convert the search string to unibyte if the
|
|
|
|
buffer is unibyte. @xref{Text Representations}.
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command search-forward string &optional limit noerror count
|
2007-09-06 04:25:08 +00:00
|
|
|
This function searches forward from point for an exact match for
|
|
|
|
@var{string}. If successful, it sets point to the end of the occurrence
|
|
|
|
found, and returns the new value of point. If no match is found, the
|
|
|
|
value and side effects depend on @var{noerror} (see below).
|
|
|
|
|
|
|
|
In the following example, point is initially at the beginning of the
|
|
|
|
line. Then @code{(search-forward "fox")} moves point after the last
|
|
|
|
letter of @samp{fox}:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@point{}The quick brown fox jumped over the lazy dog.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(search-forward "fox")
|
|
|
|
@result{} 20
|
|
|
|
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
The quick brown fox@point{} jumped over the lazy dog.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
2012-03-26 23:46:42 -07:00
|
|
|
The argument @var{limit} specifies the bound to the search, and should
|
|
|
|
be a position in the current buffer. No match extending after
|
2007-09-06 04:25:08 +00:00
|
|
|
that position is accepted. If @var{limit} is omitted or @code{nil}, it
|
|
|
|
defaults to the end of the accessible portion of the buffer.
|
|
|
|
|
|
|
|
@kindex search-failed
|
|
|
|
What happens when the search fails depends on the value of
|
|
|
|
@var{noerror}. If @var{noerror} is @code{nil}, a @code{search-failed}
|
|
|
|
error is signaled. If @var{noerror} is @code{t}, @code{search-forward}
|
|
|
|
returns @code{nil} and does nothing. If @var{noerror} is neither
|
|
|
|
@code{nil} nor @code{t}, then @code{search-forward} moves point to the
|
2012-03-26 23:46:42 -07:00
|
|
|
upper bound and returns @code{nil}.
|
|
|
|
@c I see no prospect of this ever changing, and frankly the current
|
|
|
|
@c behavior seems better, so there seems no need to mention this.
|
|
|
|
@ignore
|
|
|
|
(It would be more consistent now to return the new position of point
|
|
|
|
in that case, but some existing programs may depend on a value of
|
|
|
|
@code{nil}.)
|
|
|
|
@end ignore
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
The argument @var{noerror} only affects valid searches which fail to
|
|
|
|
find a match. Invalid arguments cause errors regardless of
|
|
|
|
@var{noerror}.
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
If @var{count} is a positive number @var{n}, the search is done
|
|
|
|
@var{n} times; each successive search starts at the end of the
|
|
|
|
previous match. If all these successive searches succeed, the
|
|
|
|
function call succeeds, moving point and returning its new value.
|
|
|
|
Otherwise the function call fails, with results depending on the value
|
|
|
|
of @var{noerror}, as described above. If @var{count} is a negative
|
2019-06-11 19:55:14 +03:00
|
|
|
number @minus{}@var{n}, the search is done @var{n} times in the opposite
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
(backward) direction.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end deffn
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command search-backward string &optional limit noerror count
|
2007-09-06 04:25:08 +00:00
|
|
|
This function searches backward from point for @var{string}. It is
|
2012-01-26 23:48:27 +08:00
|
|
|
like @code{search-forward}, except that it searches backwards rather
|
|
|
|
than forwards. Backward searches leave point at the beginning of the
|
|
|
|
match.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end deffn
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command word-search-forward string &optional limit noerror count
|
2015-09-15 08:46:48 -07:00
|
|
|
This function searches forward from point for a word match for
|
2007-09-06 04:25:08 +00:00
|
|
|
@var{string}. If it finds a match, it sets point to the end of the
|
|
|
|
match found, and returns the new value of point.
|
|
|
|
|
|
|
|
Word matching regards @var{string} as a sequence of words, disregarding
|
|
|
|
punctuation that separates them. It searches the buffer for the same
|
|
|
|
sequence of words. Each word must be distinct in the buffer (searching
|
|
|
|
for the word @samp{ball} does not match the word @samp{balls}), but the
|
|
|
|
details of punctuation and spacing are ignored (searching for @samp{ball
|
|
|
|
boy} does match @samp{ball. Boy!}).
|
|
|
|
|
|
|
|
In this example, point is initially at the beginning of the buffer; the
|
|
|
|
search leaves it between the @samp{y} and the @samp{!}.
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@point{}He said "Please! Find
|
|
|
|
the ball boy!"
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(word-search-forward "Please find the ball, boy.")
|
2014-01-31 11:41:54 +02:00
|
|
|
@result{} 39
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
He said "Please! Find
|
|
|
|
the ball boy@point{}!"
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
If @var{limit} is non-@code{nil}, it must be a position in the current
|
|
|
|
buffer; it specifies the upper bound to the search. The match found
|
|
|
|
must not extend after that position.
|
|
|
|
|
|
|
|
If @var{noerror} is @code{nil}, then @code{word-search-forward} signals
|
|
|
|
an error if the search fails. If @var{noerror} is @code{t}, then it
|
|
|
|
returns @code{nil} instead of signaling an error. If @var{noerror} is
|
|
|
|
neither @code{nil} nor @code{t}, it moves point to @var{limit} (or the
|
|
|
|
end of the accessible portion of the buffer) and returns @code{nil}.
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
If @var{count} is a positive number, it specifies how many successive
|
|
|
|
occurrences to search for. Point is positioned at the end of the last
|
|
|
|
match. If @var{count} is a negative number, the search is backward
|
|
|
|
and point is positioned at the beginning of the last match.
|
2012-03-26 23:46:42 -07:00
|
|
|
|
|
|
|
@findex word-search-regexp
|
2014-01-31 11:41:54 +02:00
|
|
|
Internally, @code{word-search-forward} and related functions use the
|
2012-03-26 23:46:42 -07:00
|
|
|
function @code{word-search-regexp} to convert @var{string} to a
|
|
|
|
regular expression that ignores punctuation.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end deffn
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command word-search-forward-lax string &optional limit noerror count
|
2009-04-10 04:48:05 +00:00
|
|
|
This command is identical to @code{word-search-forward}, except that
|
2014-01-31 11:41:54 +02:00
|
|
|
the beginning or the end of @var{string} need not match a word
|
|
|
|
boundary, unless @var{string} begins or ends in whitespace.
|
|
|
|
For instance, searching for @samp{ball boy} matches @samp{ball boyee},
|
|
|
|
but does not match @samp{balls boy}.
|
2009-04-10 04:48:05 +00:00
|
|
|
@end deffn
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command word-search-backward string &optional limit noerror count
|
2007-09-06 04:25:08 +00:00
|
|
|
This function searches backward from point for a word match to
|
|
|
|
@var{string}. This function is just like @code{word-search-forward}
|
|
|
|
except that it searches backward and normally leaves point at the
|
|
|
|
beginning of the match.
|
|
|
|
@end deffn
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command word-search-backward-lax string &optional limit noerror count
|
2009-04-10 04:48:05 +00:00
|
|
|
This command is identical to @code{word-search-backward}, except that
|
2014-01-31 11:41:54 +02:00
|
|
|
the beginning or the end of @var{string} need not match a word
|
|
|
|
boundary, unless @var{string} begins or ends in whitespace.
|
2009-04-10 04:48:05 +00:00
|
|
|
@end deffn
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Searching and Case
|
|
|
|
@section Searching and Case
|
|
|
|
@cindex searching and case
|
|
|
|
|
|
|
|
By default, searches in Emacs ignore the case of the text they are
|
|
|
|
searching through; if you specify searching for @samp{FOO}, then
|
|
|
|
@samp{Foo} or @samp{foo} is also considered a match. This applies to
|
|
|
|
regular expressions, too; thus, @samp{[aB]} would match @samp{a} or
|
|
|
|
@samp{A} or @samp{b} or @samp{B}.
|
|
|
|
|
|
|
|
If you do not want this feature, set the variable
|
|
|
|
@code{case-fold-search} to @code{nil}. Then all letters must match
|
|
|
|
exactly, including case. This is a buffer-local variable; altering the
|
|
|
|
variable affects only the current buffer. (@xref{Intro to
|
2012-03-26 23:46:42 -07:00
|
|
|
Buffer-Local}.) Alternatively, you may change the default value.
|
|
|
|
In Lisp code, you will more typically use @code{let} to bind
|
|
|
|
@code{case-fold-search} to the desired value.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Note that the user-level incremental search feature handles case
|
2009-04-10 04:48:05 +00:00
|
|
|
distinctions differently. When the search string contains only lower
|
|
|
|
case letters, the search ignores case, but when the search string
|
|
|
|
contains one or more upper case letters, the search becomes
|
|
|
|
case-sensitive. But this has nothing to do with the searching
|
2012-03-26 23:46:42 -07:00
|
|
|
functions used in Lisp code. @xref{Incremental Search,,, emacs,
|
|
|
|
The GNU Emacs Manual}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@defopt case-fold-search
|
|
|
|
This buffer-local variable determines whether searches should ignore
|
|
|
|
case. If the variable is @code{nil} they do not ignore case; otherwise
|
2012-03-26 23:46:42 -07:00
|
|
|
(and by default) they do ignore case.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defopt
|
|
|
|
|
2009-04-10 04:48:05 +00:00
|
|
|
@defopt case-replace
|
2012-03-26 23:46:42 -07:00
|
|
|
This variable determines whether the higher-level replacement
|
2009-04-10 04:48:05 +00:00
|
|
|
functions should preserve case. If the variable is @code{nil}, that
|
|
|
|
means to use the replacement text verbatim. A non-@code{nil} value
|
|
|
|
means to convert the case of the replacement text according to the
|
|
|
|
text being replaced.
|
|
|
|
|
|
|
|
This variable is used by passing it as an argument to the function
|
|
|
|
@code{replace-match}. @xref{Replacing Match}.
|
|
|
|
@end defopt
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Regular Expressions
|
|
|
|
@section Regular Expressions
|
|
|
|
@cindex regular expression
|
|
|
|
@cindex regexp
|
|
|
|
|
2009-04-10 04:48:05 +00:00
|
|
|
A @dfn{regular expression}, or @dfn{regexp} for short, is a pattern that
|
2007-09-06 04:25:08 +00:00
|
|
|
denotes a (possibly infinite) set of strings. Searching for matches for
|
|
|
|
a regexp is a very powerful operation. This section explains how to write
|
|
|
|
regexps; the following section says how to search for them.
|
|
|
|
|
|
|
|
@findex re-builder
|
|
|
|
@cindex regular expressions, developing
|
2012-03-28 00:57:42 -07:00
|
|
|
For interactive development of regular expressions, you
|
2007-09-06 04:25:08 +00:00
|
|
|
can use the @kbd{M-x re-builder} command. It provides a convenient
|
|
|
|
interface for creating regular expressions, by giving immediate visual
|
|
|
|
feedback in a separate buffer. As you edit the regexp, all its
|
|
|
|
matches in the target buffer are highlighted. Each parenthesized
|
|
|
|
sub-expression of the regexp is shown in a distinct face, which makes
|
|
|
|
it easier to verify even very complex regexps.
|
|
|
|
|
2021-05-08 15:07:38 +01:00
|
|
|
Note that by default Emacs search ignores case (@pxref{Searching and
|
2021-05-08 13:59:03 +02:00
|
|
|
Case}). To enable case-sensitive regexp search and match, bind
|
|
|
|
@code{case-fold-search} to @code{nil} around the code you want to be
|
|
|
|
case-sensitive.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@menu
|
|
|
|
* Syntax of Regexps:: Rules for writing regular expressions.
|
|
|
|
* Regexp Example:: Illustrates regular expression syntax.
|
2019-07-04 13:01:52 +02:00
|
|
|
@ifnottex
|
|
|
|
* Rx Notation:: An alternative, structured regexp notation.
|
|
|
|
@end ifnottex
|
2007-09-06 04:25:08 +00:00
|
|
|
* Regexp Functions:: Functions for operating on regular expressions.
|
2021-11-03 13:42:25 +01:00
|
|
|
* Regexp Problems:: Some problems and how they may be avoided.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Syntax of Regexps
|
|
|
|
@subsection Syntax of Regular Expressions
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
@cindex regexp syntax
|
|
|
|
@cindex syntax of regular expressions
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Regular expressions have a syntax in which a few characters are
|
|
|
|
special constructs and the rest are @dfn{ordinary}. An ordinary
|
|
|
|
character is a simple regular expression that matches that character
|
|
|
|
and nothing else. The special characters are @samp{.}, @samp{*},
|
|
|
|
@samp{+}, @samp{?}, @samp{[}, @samp{^}, @samp{$}, and @samp{\}; no new
|
|
|
|
special characters will be defined in the future. The character
|
2023-06-19 11:09:00 -07:00
|
|
|
@samp{]} is special if it ends a bracket expression (see later).
|
|
|
|
The character @samp{-} is special inside a bracket expression. A
|
2007-09-06 04:25:08 +00:00
|
|
|
@samp{[:} and balancing @samp{:]} enclose a character class inside a
|
2023-06-19 11:09:00 -07:00
|
|
|
bracket expression. Any other character appearing in a regular
|
2007-09-06 04:25:08 +00:00
|
|
|
expression is ordinary, unless a @samp{\} precedes it.
|
|
|
|
|
|
|
|
For example, @samp{f} is not a special character, so it is ordinary, and
|
|
|
|
therefore @samp{f} is a regular expression that matches the string
|
|
|
|
@samp{f} and no other string. (It does @emph{not} match the string
|
|
|
|
@samp{fg}, but it does match a @emph{part} of that string.) Likewise,
|
2013-10-23 13:20:09 -04:00
|
|
|
@samp{o} is a regular expression that matches only @samp{o}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Any two regular expressions @var{a} and @var{b} can be concatenated. The
|
|
|
|
result is a regular expression that matches a string if @var{a} matches
|
|
|
|
some amount of the beginning of that string and @var{b} matches the rest of
|
2013-10-23 13:20:09 -04:00
|
|
|
the string.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
As a simple example, we can concatenate the regular expressions @samp{f}
|
|
|
|
and @samp{o} to get the regular expression @samp{fo}, which matches only
|
|
|
|
the string @samp{fo}. Still trivial. To do something more powerful, you
|
|
|
|
need to use one of the special regular expression constructs.
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* Regexp Special:: Special characters in regular expressions.
|
|
|
|
* Char Classes:: Character classes used in regular expressions.
|
|
|
|
* Regexp Backslash:: Backslash-sequences in regular expressions.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Regexp Special
|
|
|
|
@subsubsection Special Characters in Regular Expressions
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
@cindex regexp, special characters in
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Here is a list of the characters that are special in a regular
|
|
|
|
expression.
|
|
|
|
|
|
|
|
@need 800
|
|
|
|
@table @asis
|
|
|
|
@item @samp{.}@: @r{(Period)}
|
|
|
|
@cindex @samp{.} in regexp
|
|
|
|
is a special character that matches any single character except a newline.
|
|
|
|
Using concatenation, we can make regular expressions like @samp{a.b}, which
|
|
|
|
matches any three-character string that begins with @samp{a} and ends with
|
2013-10-23 13:20:09 -04:00
|
|
|
@samp{b}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item @samp{*}
|
|
|
|
@cindex @samp{*} in regexp
|
|
|
|
is not a construct by itself; it is a postfix operator that means to
|
|
|
|
match the preceding regular expression repetitively as many times as
|
|
|
|
possible. Thus, @samp{o*} matches any number of @samp{o}s (including no
|
|
|
|
@samp{o}s).
|
|
|
|
|
|
|
|
@samp{*} always applies to the @emph{smallest} possible preceding
|
|
|
|
expression. Thus, @samp{fo*} has a repeating @samp{o}, not a repeating
|
|
|
|
@samp{fo}. It matches @samp{f}, @samp{fo}, @samp{foo}, and so on.
|
|
|
|
|
2012-03-28 00:57:42 -07:00
|
|
|
@cindex backtracking and regular expressions
|
2007-09-06 04:25:08 +00:00
|
|
|
The matcher processes a @samp{*} construct by matching, immediately, as
|
|
|
|
many repetitions as can be found. Then it continues with the rest of
|
|
|
|
the pattern. If that fails, backtracking occurs, discarding some of the
|
2017-10-09 22:53:19 -07:00
|
|
|
matches of the @samp{*}-modified construct in the hope that this will
|
2007-09-06 04:25:08 +00:00
|
|
|
make it possible to match the rest of the pattern. For example, in
|
|
|
|
matching @samp{ca*ar} against the string @samp{caaar}, the @samp{a*}
|
|
|
|
first tries to match all three @samp{a}s; but the rest of the pattern is
|
|
|
|
@samp{ar} and there is only @samp{r} left to match, so this try fails.
|
|
|
|
The next alternative is for @samp{a*} to match only two @samp{a}s. With
|
|
|
|
this choice, the rest of the regexp matches successfully.
|
|
|
|
|
|
|
|
@item @samp{+}
|
|
|
|
@cindex @samp{+} in regexp
|
|
|
|
is a postfix operator, similar to @samp{*} except that it must match
|
|
|
|
the preceding expression at least once. So, for example, @samp{ca+r}
|
|
|
|
matches the strings @samp{car} and @samp{caaaar} but not the string
|
|
|
|
@samp{cr}, whereas @samp{ca*r} matches all three strings.
|
|
|
|
|
|
|
|
@item @samp{?}
|
|
|
|
@cindex @samp{?} in regexp
|
|
|
|
is a postfix operator, similar to @samp{*} except that it must match the
|
|
|
|
preceding expression either once or not at all. For example,
|
|
|
|
@samp{ca?r} matches @samp{car} or @samp{cr}; nothing else.
|
|
|
|
|
2019-07-04 13:01:52 +02:00
|
|
|
@anchor{Non-greedy repetition}
|
2007-09-06 04:25:08 +00:00
|
|
|
@item @samp{*?}, @samp{+?}, @samp{??}
|
2008-10-21 14:01:33 +00:00
|
|
|
@cindex non-greedy repetition characters in regexp
|
2021-05-30 13:20:02 +03:00
|
|
|
are @dfn{non-greedy} variants of the operators @samp{*}, @samp{+}
|
2007-09-06 04:25:08 +00:00
|
|
|
and @samp{?}. Where those operators match the largest possible
|
|
|
|
substring (consistent with matching the entire containing expression),
|
|
|
|
the non-greedy variants match the smallest possible substring
|
|
|
|
(consistent with matching the entire containing expression).
|
|
|
|
|
|
|
|
For example, the regular expression @samp{c[ad]*a} when applied to the
|
|
|
|
string @samp{cdaaada} matches the whole string; but the regular
|
|
|
|
expression @samp{c[ad]*?a}, applied to that same string, matches just
|
|
|
|
@samp{cda}. (The smallest possible match here for @samp{[ad]*?} that
|
|
|
|
permits the whole expression to match is @samp{d}.)
|
|
|
|
|
|
|
|
@item @samp{[ @dots{} ]}
|
2023-06-19 11:09:00 -07:00
|
|
|
@cindex bracket expression (in regexp)
|
2023-06-22 08:32:16 +03:00
|
|
|
@cindex character alternative (in regexp)
|
2007-09-06 04:25:08 +00:00
|
|
|
@cindex @samp{[} in regexp
|
|
|
|
@cindex @samp{]} in regexp
|
2023-06-22 08:32:16 +03:00
|
|
|
is a @dfn{bracket expression} (a.k.a.@: @dfn{character alternative}),
|
|
|
|
which begins with @samp{[} and is terminated by @samp{]}. In the
|
|
|
|
simplest case, the characters between the two brackets are what this
|
|
|
|
bracket expression can match.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Thus, @samp{[ad]} matches either one @samp{a} or one @samp{d}, and
|
|
|
|
@samp{[ad]*} matches any string composed of just @samp{a}s and @samp{d}s
|
2010-06-02 13:26:31 -04:00
|
|
|
(including the empty string). It follows that @samp{c[ad]*r}
|
2007-09-06 04:25:08 +00:00
|
|
|
matches @samp{cr}, @samp{car}, @samp{cdr}, @samp{caddaar}, etc.
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
You can also include character ranges in a bracket expression, by
|
2007-09-06 04:25:08 +00:00
|
|
|
writing the starting and ending characters with a @samp{-} between them.
|
|
|
|
Thus, @samp{[a-z]} matches any lower-case @acronym{ASCII} letter.
|
|
|
|
Ranges may be intermixed freely with individual characters, as in
|
|
|
|
@samp{[a-z$%.]}, which matches any lower case @acronym{ASCII} letter
|
2019-03-20 14:43:30 -07:00
|
|
|
or @samp{$}, @samp{%} or period. However, the ending character of one
|
|
|
|
range should not be the starting point of another one; for example,
|
|
|
|
@samp{[a-m-z]} should be avoided.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
A bracket expression can also specify named character classes
|
2022-11-04 16:02:48 +02:00
|
|
|
(@pxref{Char Classes}). For example, @samp{[[:ascii:]]} matches any
|
|
|
|
@acronym{ASCII} character. Using a character class is equivalent to
|
|
|
|
mentioning each of the characters in that class; but the latter is not
|
|
|
|
feasible in practice, since some classes include thousands of
|
|
|
|
different characters. A character class should not appear as the
|
|
|
|
lower or upper bound of a range.
|
2019-04-02 15:00:59 -07:00
|
|
|
|
2019-03-20 14:43:30 -07:00
|
|
|
The usual regexp special characters are not special inside a
|
2023-06-19 11:09:00 -07:00
|
|
|
bracket expression. A completely different set of characters is
|
2019-04-02 15:00:59 -07:00
|
|
|
special: @samp{]}, @samp{-} and @samp{^}.
|
2023-06-19 11:09:00 -07:00
|
|
|
To include @samp{]} in a bracket expression, put it at the
|
2019-04-02 00:17:37 -07:00
|
|
|
beginning. To include @samp{^}, put it anywhere but at the beginning.
|
|
|
|
To include @samp{-}, put it at the end. Thus, @samp{[]^-]} matches
|
|
|
|
all three of these special characters. You cannot use @samp{\} to
|
|
|
|
escape these three characters, since @samp{\} is not special here.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2019-03-20 14:43:30 -07:00
|
|
|
The following aspects of ranges are specific to Emacs, in that POSIX
|
|
|
|
allows but does not require this behavior and programs other than
|
|
|
|
Emacs may behave differently:
|
|
|
|
|
|
|
|
@enumerate
|
|
|
|
@item
|
|
|
|
If @code{case-fold-search} is non-@code{nil}, @samp{[a-z]} also
|
|
|
|
matches upper-case letters.
|
|
|
|
|
|
|
|
@item
|
|
|
|
A range is not affected by the locale's collation sequence: it always
|
|
|
|
represents the set of characters with codepoints ranging between those
|
|
|
|
of its bounds, so that @samp{[a-z]} matches only ASCII letters, even
|
|
|
|
outside the C or POSIX locale.
|
|
|
|
|
|
|
|
@item
|
2019-04-02 00:17:37 -07:00
|
|
|
If the lower bound of a range is greater than its upper bound, the
|
|
|
|
range is empty and represents no characters. Thus, @samp{[z-a]}
|
|
|
|
always fails to match, and @samp{[^z-a]} matches any character,
|
|
|
|
including newline. However, a reversed range should always be from
|
|
|
|
the letter @samp{z} to the letter @samp{a} to make it clear that it is
|
|
|
|
not a typo; for example, @samp{[+-*/]} should be avoided, because it
|
|
|
|
matches only @samp{/} rather than the likely-intended four characters.
|
2021-05-30 13:20:02 +03:00
|
|
|
|
|
|
|
@item
|
|
|
|
If the end points of a range are raw 8-bit bytes (@pxref{Text
|
|
|
|
Representations}), or if the range start is ASCII and the end is a raw
|
|
|
|
byte (as in @samp{[a-\377]}), the range will match only ASCII
|
|
|
|
characters and raw 8-bit bytes, but not non-ASCII characters. This
|
|
|
|
feature is intended for searching text in unibyte buffers and strings.
|
2019-04-02 00:17:37 -07:00
|
|
|
@end enumerate
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
Some kinds of bracket expressions are not the best style even
|
2019-04-02 15:00:59 -07:00
|
|
|
though they have a well-defined meaning in Emacs. They include:
|
2019-03-20 14:43:30 -07:00
|
|
|
|
2019-04-02 00:17:37 -07:00
|
|
|
@enumerate
|
2019-03-20 14:43:30 -07:00
|
|
|
@item
|
2019-04-02 15:00:59 -07:00
|
|
|
Although a range's bound can be almost any character, it is better
|
|
|
|
style to stay within natural sequences of ASCII letters and digits
|
|
|
|
because most people have not memorized character code tables.
|
|
|
|
For example, @samp{[.-9]} is less clear than @samp{[./0-9]},
|
|
|
|
and @samp{[`-~]} is less clear than @samp{[`a-z@{|@}~]}.
|
|
|
|
Unicode character escapes can help here; for example, for most programmers
|
|
|
|
@samp{[ก-ฺ฿-๛]} is less clear than @samp{[\u0E01-\u0E3A\u0E3F-\u0E5B]}.
|
2019-04-02 00:17:37 -07:00
|
|
|
|
|
|
|
@item
|
2023-06-19 11:09:00 -07:00
|
|
|
Although a bracket expression can include duplicates, it is better
|
2019-04-02 15:00:59 -07:00
|
|
|
style to avoid them. For example, @samp{[XYa-yYb-zX]} is less clear
|
|
|
|
than @samp{[XYa-z]}.
|
2019-04-02 00:17:37 -07:00
|
|
|
|
|
|
|
@item
|
2019-04-02 15:00:59 -07:00
|
|
|
Although a range can denote just one, two, or three characters, it
|
|
|
|
is simpler to list the characters. For example,
|
|
|
|
@samp{[a-a0]} is less clear than @samp{[a0]}, @samp{[i-j]} is less clear
|
|
|
|
than @samp{[ij]}, and @samp{[i-k]} is less clear than @samp{[ijk]}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2019-04-02 15:00:59 -07:00
|
|
|
@item
|
2023-06-19 11:09:00 -07:00
|
|
|
Although a @samp{-} can appear at the beginning of a bracket
|
|
|
|
expression or as the upper bound of a range, it is better style to
|
|
|
|
put @samp{-} by itself at the end of a bracket expression. For
|
2019-04-02 15:00:59 -07:00
|
|
|
example, although @samp{[-a-z]} is valid, @samp{[a-z-]} is better
|
|
|
|
style; and although @samp{[*--]} is valid, @samp{[*+,-]} is clearer.
|
|
|
|
@end enumerate
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item @samp{[^ @dots{} ]}
|
|
|
|
@cindex @samp{^} in regexp
|
2023-06-22 08:32:16 +03:00
|
|
|
@samp{[^} begins a @dfn{complemented bracket expression}, or
|
|
|
|
@dfn{complemented character alternative}. This matches any character
|
|
|
|
except the ones specified. Thus, @samp{[^a-z0-9A-Z]} matches all
|
|
|
|
characters @emph{except} ASCII letters and digits.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
@samp{^} is not special in a bracket expression unless it is the first
|
2007-09-06 04:25:08 +00:00
|
|
|
character. The character following the @samp{^} is treated as if it
|
|
|
|
were first (in other words, @samp{-} and @samp{]} are not special there).
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
A complemented bracket expression can match a newline, unless newline is
|
2007-09-06 04:25:08 +00:00
|
|
|
mentioned as one of the characters not to match. This is in contrast to
|
|
|
|
the handling of regexps in programs such as @code{grep}.
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
You can specify named character classes, just like in bracket
|
|
|
|
expressions. For instance, @samp{[^[:ascii:]]} matches any
|
2010-06-02 13:26:31 -04:00
|
|
|
non-@acronym{ASCII} character. @xref{Char Classes}.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@item @samp{^}
|
|
|
|
@cindex beginning of line in regexp
|
|
|
|
When matching a buffer, @samp{^} matches the empty string, but only at the
|
|
|
|
beginning of a line in the text being matched (or the beginning of the
|
|
|
|
accessible portion of the buffer). Otherwise it fails to match
|
|
|
|
anything. Thus, @samp{^foo} matches a @samp{foo} that occurs at the
|
|
|
|
beginning of a line.
|
|
|
|
|
|
|
|
When matching a string instead of a buffer, @samp{^} matches at the
|
|
|
|
beginning of the string or after a newline character.
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
For historical compatibility, @samp{^} is special only at the beginning
|
|
|
|
of the regular expression, or after @samp{\(}, @samp{\(?:} or @samp{\|}.
|
|
|
|
Although @samp{^} is an ordinary character in other contexts,
|
|
|
|
it is good practice to use @samp{\^} even then.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item @samp{$}
|
|
|
|
@cindex @samp{$} in regexp
|
|
|
|
@cindex end of line in regexp
|
|
|
|
is similar to @samp{^} but matches only at the end of a line (or the
|
|
|
|
end of the accessible portion of the buffer). Thus, @samp{x+$}
|
|
|
|
matches a string of one @samp{x} or more at the end of a line.
|
|
|
|
|
|
|
|
When matching a string instead of a buffer, @samp{$} matches at the end
|
|
|
|
of the string or before a newline character.
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
For historical compatibility, @samp{$} is special only at the
|
2007-09-06 04:25:08 +00:00
|
|
|
end of the regular expression, or before @samp{\)} or @samp{\|}.
|
2023-06-19 11:09:00 -07:00
|
|
|
Although @samp{$} is an ordinary character in other contexts,
|
|
|
|
it is good practice to use @samp{\$} even then.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item @samp{\}
|
|
|
|
@cindex @samp{\} in regexp
|
|
|
|
has two functions: it quotes the special characters (including
|
|
|
|
@samp{\}), and it introduces additional special constructs.
|
|
|
|
|
|
|
|
Because @samp{\} quotes special characters, @samp{\$} is a regular
|
|
|
|
expression that matches only @samp{$}, and @samp{\[} is a regular
|
|
|
|
expression that matches only @samp{[}, and so on.
|
|
|
|
|
|
|
|
Note that @samp{\} also has special meaning in the read syntax of Lisp
|
|
|
|
strings (@pxref{String Type}), and must be quoted with @samp{\}. For
|
|
|
|
example, the regular expression that matches the @samp{\} character is
|
|
|
|
@samp{\\}. To write a Lisp string that contains the characters
|
|
|
|
@samp{\\}, Lisp syntax requires you to quote each @samp{\} with another
|
|
|
|
@samp{\}. Therefore, the read syntax for a regular expression matching
|
2013-10-23 13:20:09 -04:00
|
|
|
@samp{\} is @code{"\\\\"}.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end table
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
For historical compatibility, a repetition operator is treated as ordinary
|
|
|
|
if it appears at the start of a regular expression
|
2023-06-20 12:12:50 +02:00
|
|
|
or after @samp{^}, @samp{\`}, @samp{\(}, @samp{\(?:} or @samp{\|}.
|
2023-06-19 11:09:00 -07:00
|
|
|
For example, @samp{*foo} is treated as @samp{\*foo}, and
|
|
|
|
@samp{two\|^\@{2\@}} is treated as @samp{two\|^@{2@}}.
|
|
|
|
It is poor practice to depend on this behavior; use proper backslash
|
|
|
|
escaping anyway, regardless of where the repetition operator appears.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
As a @samp{\} is not special inside a bracket expression, it can
|
2022-05-09 13:38:40 +02:00
|
|
|
never remove the special meaning of @samp{-}, @samp{^} or @samp{]}.
|
2022-05-09 16:02:58 +03:00
|
|
|
You should not quote these characters when they have no special
|
|
|
|
meaning. This would not clarify anything, since backslashes
|
2022-05-09 13:38:40 +02:00
|
|
|
can legitimately precede these characters where they @emph{have}
|
|
|
|
special meaning, as in @samp{[^\]} (@code{"[^\\]"} for Lisp string
|
|
|
|
syntax), which matches any single character except a backslash.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
In practice, most @samp{]} that occur in regular expressions close a
|
2023-06-19 11:09:00 -07:00
|
|
|
bracket expression and hence are special. However, occasionally a
|
2007-09-06 04:25:08 +00:00
|
|
|
regular expression may try to match a complex pattern of literal
|
|
|
|
@samp{[} and @samp{]}. In such situations, it sometimes may be
|
|
|
|
necessary to carefully parse the regexp from the start to determine
|
2023-06-19 11:09:00 -07:00
|
|
|
which square brackets enclose a bracket expression. For example,
|
|
|
|
@samp{[^][]]} consists of the complemented bracket expression
|
2007-09-06 04:25:08 +00:00
|
|
|
@samp{[^][]} (which matches any single character that is not a square
|
|
|
|
bracket), followed by a literal @samp{]}.
|
|
|
|
|
|
|
|
The exact rules are that at the beginning of a regexp, @samp{[} is
|
|
|
|
special and @samp{]} not. This lasts until the first unquoted
|
2023-06-19 11:09:00 -07:00
|
|
|
@samp{[}, after which we are in a bracket expression; @samp{[} is
|
2007-09-06 04:25:08 +00:00
|
|
|
no longer special (except when it starts a character class) but @samp{]}
|
|
|
|
is special, unless it immediately follows the special @samp{[} or that
|
|
|
|
@samp{[} followed by a @samp{^}. This lasts until the next special
|
2023-06-19 11:09:00 -07:00
|
|
|
@samp{]} that does not end a character class. This ends the bracket
|
|
|
|
expression and restores the ordinary syntax of regular expressions;
|
2007-09-06 04:25:08 +00:00
|
|
|
an unquoted @samp{[} is special again and a @samp{]} not.
|
|
|
|
|
|
|
|
@node Char Classes
|
|
|
|
@subsubsection Character Classes
|
|
|
|
@cindex character classes in regexp
|
2019-07-13 04:55:52 +02:00
|
|
|
@cindex ascii character class, regexp
|
|
|
|
@cindex alnum character class, regexp
|
|
|
|
@cindex alpha character class, regexp
|
|
|
|
@cindex xdigit character class, regexp
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2023-06-22 08:32:16 +03:00
|
|
|
Below is a table of the classes you can use in a bracket expression
|
|
|
|
(@pxref{Regexp Special, bracket expression}), and what they mean.
|
|
|
|
Note that the @samp{[} and @samp{]} characters that enclose the class
|
|
|
|
name are part of the name, so a regular expression using these classes
|
|
|
|
needs one more pair of brackets. For example, a regular expression
|
|
|
|
matching a sequence of one or more letters and digits would be
|
|
|
|
@samp{[[:alnum:]]+}, not @samp{[:alnum:]+}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@table @samp
|
|
|
|
@item [:ascii:]
|
|
|
|
This matches any @acronym{ASCII} character (codes 0--127).
|
|
|
|
@item [:alnum:]
|
2015-02-28 14:25:35 +02:00
|
|
|
This matches any letter or digit. For multibyte characters, it
|
|
|
|
matches characters whose Unicode @samp{general-category} property
|
|
|
|
(@pxref{Character Properties}) indicates they are alphabetic or
|
|
|
|
decimal number characters.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:alpha:]
|
2015-02-28 14:25:35 +02:00
|
|
|
This matches any letter. For multibyte characters, it matches
|
|
|
|
characters whose Unicode @samp{general-category} property
|
|
|
|
(@pxref{Character Properties}) indicates they are alphabetic
|
|
|
|
characters.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:blank:]
|
2017-01-06 15:56:51 +01:00
|
|
|
This matches horizontal whitespace, as defined by Annex C of the
|
|
|
|
Unicode Technical Standard #18. In particular, it matches spaces,
|
|
|
|
tabs, and other characters whose Unicode @samp{general-category}
|
|
|
|
property (@pxref{Character Properties}) indicates they are spacing
|
|
|
|
separators.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:cntrl:]
|
2019-02-10 10:39:00 +01:00
|
|
|
This matches any character whose code is in the range 0--31.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:digit:]
|
|
|
|
This matches @samp{0} through @samp{9}. Thus, @samp{[-+[:digit:]]}
|
|
|
|
matches any digit, as well as @samp{+} and @samp{-}.
|
2025-02-28 16:22:30 +02:00
|
|
|
@cindex graphic characters
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:graph:]
|
2022-11-04 15:12:29 +02:00
|
|
|
This matches graphic characters---everything except spaces,
|
2015-04-15 00:26:32 -07:00
|
|
|
@acronym{ASCII} and non-@acronym{ASCII} control characters,
|
|
|
|
surrogates, and codepoints unassigned by Unicode, as indicated by the
|
|
|
|
Unicode @samp{general-category} property (@pxref{Character
|
|
|
|
Properties}).
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:lower:]
|
2009-11-08 23:19:11 +00:00
|
|
|
This matches any lower-case letter, as determined by the current case
|
|
|
|
table (@pxref{Case Tables}). If @code{case-fold-search} is
|
2022-11-04 15:12:29 +02:00
|
|
|
non-@code{nil}, this also matches any upper-case letter. Note that a
|
|
|
|
buffer can have its own local case table different from the default
|
|
|
|
one.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:multibyte:]
|
|
|
|
This matches any multibyte character (@pxref{Text Representations}).
|
|
|
|
@item [:nonascii:]
|
|
|
|
This matches any non-@acronym{ASCII} character.
|
2025-02-28 16:22:30 +02:00
|
|
|
@cindex printable characters
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:print:]
|
2022-11-04 15:12:29 +02:00
|
|
|
This matches any printing character---either spaces or graphic
|
|
|
|
characters matched by @samp{[:graph:]}.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:punct:]
|
|
|
|
This matches any punctuation character. (At present, for multibyte
|
2022-11-04 15:12:29 +02:00
|
|
|
characters, it matches anything that has non-word syntax, and thus its
|
|
|
|
exact definition can vary from one major mode to another, since the
|
|
|
|
syntax of a character depends on the major mode.)
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:space:]
|
|
|
|
This matches any character that has whitespace syntax
|
2022-11-04 15:12:29 +02:00
|
|
|
(@pxref{Syntax Class Table}). Note that the syntax of a character,
|
|
|
|
and thus which characters are considered ``whitespace'',
|
|
|
|
depends on the major mode.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:unibyte:]
|
|
|
|
This matches any unibyte character (@pxref{Text Representations}).
|
|
|
|
@item [:upper:]
|
2009-11-08 23:19:11 +00:00
|
|
|
This matches any upper-case letter, as determined by the current case
|
|
|
|
table (@pxref{Case Tables}). If @code{case-fold-search} is
|
2022-11-04 15:12:29 +02:00
|
|
|
non-@code{nil}, this also matches any lower-case letter. Note that a
|
|
|
|
buffer can have its own local case table different from the default
|
|
|
|
one.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:word:]
|
|
|
|
This matches any character that has word syntax (@pxref{Syntax Class
|
2022-11-04 15:12:29 +02:00
|
|
|
Table}). Note that the syntax of a character, and thus which
|
|
|
|
characters are considered ``word-constituent'', depends on the major
|
|
|
|
mode.
|
2007-09-06 04:25:08 +00:00
|
|
|
@item [:xdigit:]
|
|
|
|
This matches the hexadecimal digits: @samp{0} through @samp{9}, @samp{a}
|
|
|
|
through @samp{f} and @samp{A} through @samp{F}.
|
|
|
|
@end table
|
|
|
|
|
2023-07-28 11:14:01 +02:00
|
|
|
The classes @samp{[:space:]}, @samp{[:word:]} and @samp{[:punct:]} use
|
|
|
|
the syntax-table of the current buffer but not any overriding syntax
|
|
|
|
text properties (@pxref{Syntax Properties}).
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Regexp Backslash
|
|
|
|
@subsubsection Backslash Constructs in Regular Expressions
|
2012-02-25 12:03:43 +08:00
|
|
|
@cindex backslash in regular expressions
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
For the most part, @samp{\} followed by any character matches only
|
|
|
|
that character. However, there are several exceptions: certain
|
2013-04-21 11:27:51 +08:00
|
|
|
sequences starting with @samp{\} that have special meanings. Here is
|
|
|
|
a table of the special @samp{\} constructs.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@table @samp
|
|
|
|
@item \|
|
|
|
|
@cindex @samp{|} in regexp
|
|
|
|
@cindex regexp alternative
|
|
|
|
specifies an alternative.
|
|
|
|
Two regular expressions @var{a} and @var{b} with @samp{\|} in
|
|
|
|
between form an expression that matches anything that either @var{a} or
|
2013-10-23 13:20:09 -04:00
|
|
|
@var{b} matches.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Thus, @samp{foo\|bar} matches either @samp{foo} or @samp{bar}
|
2013-10-23 13:20:09 -04:00
|
|
|
but no other string.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@samp{\|} applies to the largest possible surrounding expressions. Only a
|
|
|
|
surrounding @samp{\( @dots{} \)} grouping can limit the grouping power of
|
2013-10-23 13:20:09 -04:00
|
|
|
@samp{\|}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
If you need full backtracking capability to handle multiple uses of
|
|
|
|
@samp{\|}, use the POSIX regular expression functions (@pxref{POSIX
|
|
|
|
Regexps}).
|
|
|
|
|
|
|
|
@item \@{@var{m}\@}
|
|
|
|
is a postfix operator that repeats the previous pattern exactly @var{m}
|
|
|
|
times. Thus, @samp{x\@{5\@}} matches the string @samp{xxxxx}
|
|
|
|
and nothing else. @samp{c[ad]\@{3\@}r} matches string such as
|
|
|
|
@samp{caaar}, @samp{cdddr}, @samp{cadar}, and so on.
|
|
|
|
|
|
|
|
@item \@{@var{m},@var{n}\@}
|
|
|
|
is a more general postfix operator that specifies repetition with a
|
|
|
|
minimum of @var{m} repeats and a maximum of @var{n} repeats. If @var{m}
|
|
|
|
is omitted, the minimum is 0; if @var{n} is omitted, there is no
|
2017-12-11 18:52:52 -05:00
|
|
|
maximum. For both forms, @var{m} and @var{n}, if specified, may be no
|
|
|
|
larger than
|
|
|
|
@ifnottex
|
2017-12-11 18:53:34 -05:00
|
|
|
2**16 @minus{} 1
|
2017-12-11 18:52:52 -05:00
|
|
|
@end ifnottex
|
|
|
|
@tex
|
2017-12-11 18:53:34 -05:00
|
|
|
@math{2^{16}-1}
|
2017-12-11 18:52:52 -05:00
|
|
|
@end tex
|
|
|
|
.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
For example, @samp{c[ad]\@{1,2\@}r} matches the strings @samp{car},
|
|
|
|
@samp{cdr}, @samp{caar}, @samp{cadr}, @samp{cdar}, and @samp{cddr}, and
|
|
|
|
nothing else.@*
|
Untabify doc/lispref/*.texi.
* abbrevs.texi, commands.texi, compile.texi, debugging.texi:
* display.texi, edebug.texi, elisp.texi, eval.texi, files.texi:
* frames.texi, functions.texi, internals.texi, keymaps.texi:
* loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi:
* searching.texi, sequences.texi, strings.texi, syntax.texi:
* text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi:
Untabify Texinfo files.
2010-06-22 20:36:56 -07:00
|
|
|
@samp{\@{0,1\@}} or @samp{\@{,1\@}} is equivalent to @samp{?}.@*
|
|
|
|
@samp{\@{0,\@}} or @samp{\@{,\@}} is equivalent to @samp{*}.@*
|
2007-09-06 04:25:08 +00:00
|
|
|
@samp{\@{1,\@}} is equivalent to @samp{+}.
|
|
|
|
|
|
|
|
@item \( @dots{} \)
|
|
|
|
@cindex @samp{(} in regexp
|
|
|
|
@cindex @samp{)} in regexp
|
|
|
|
@cindex regexp grouping
|
|
|
|
is a grouping construct that serves three purposes:
|
|
|
|
|
|
|
|
@enumerate
|
|
|
|
@item
|
|
|
|
To enclose a set of @samp{\|} alternatives for other operations. Thus,
|
|
|
|
the regular expression @samp{\(foo\|bar\)x} matches either @samp{foox}
|
|
|
|
or @samp{barx}.
|
|
|
|
|
|
|
|
@item
|
|
|
|
To enclose a complicated expression for the postfix operators @samp{*},
|
|
|
|
@samp{+} and @samp{?} to operate on. Thus, @samp{ba\(na\)*} matches
|
|
|
|
@samp{ba}, @samp{bana}, @samp{banana}, @samp{bananana}, etc., with any
|
|
|
|
number (zero or more) of @samp{na} strings.
|
|
|
|
|
|
|
|
@item
|
|
|
|
To record a matched substring for future reference with
|
|
|
|
@samp{\@var{digit}} (see below).
|
|
|
|
@end enumerate
|
|
|
|
|
|
|
|
This last application is not a consequence of the idea of a
|
|
|
|
parenthetical grouping; it is a separate feature that was assigned as a
|
|
|
|
second meaning to the same @samp{\( @dots{} \)} construct because, in
|
|
|
|
practice, there was usually no conflict between the two meanings. But
|
|
|
|
occasionally there is a conflict, and that led to the introduction of
|
|
|
|
shy groups.
|
|
|
|
|
|
|
|
@item \(?: @dots{} \)
|
2009-04-15 21:54:15 +00:00
|
|
|
@cindex shy groups
|
|
|
|
@cindex non-capturing group
|
|
|
|
@cindex unnumbered group
|
2009-05-04 19:33:10 +00:00
|
|
|
@cindex @samp{(?:} in regexp
|
2007-09-06 04:25:08 +00:00
|
|
|
is the @dfn{shy group} construct. A shy group serves the first two
|
|
|
|
purposes of an ordinary group (controlling the nesting of other
|
|
|
|
operators), but it does not get a number, so you cannot refer back to
|
2009-04-15 21:54:15 +00:00
|
|
|
its value with @samp{\@var{digit}}. Shy groups are particularly
|
|
|
|
useful for mechanically-constructed regular expressions, because they
|
|
|
|
can be added automatically without altering the numbering of ordinary,
|
|
|
|
non-shy groups.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2009-04-15 21:54:15 +00:00
|
|
|
Shy groups are also called @dfn{non-capturing} or @dfn{unnumbered
|
|
|
|
groups}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item \(?@var{num}: @dots{} \)
|
|
|
|
is the @dfn{explicitly numbered group} construct. Normal groups get
|
|
|
|
their number implicitly, based on their position, which can be
|
|
|
|
inconvenient. This construct allows you to force a particular group
|
|
|
|
number. There is no particular restriction on the numbering,
|
2012-12-05 14:27:56 -08:00
|
|
|
e.g., you can have several groups with the same number in which case
|
|
|
|
the last one to match (i.e., the rightmost match) will win.
|
2007-09-06 04:25:08 +00:00
|
|
|
Implicitly numbered groups always get the smallest integer larger than
|
|
|
|
the one of any previous group.
|
|
|
|
|
|
|
|
@item \@var{digit}
|
|
|
|
matches the same text that matched the @var{digit}th occurrence of a
|
|
|
|
grouping (@samp{\( @dots{} \)}) construct.
|
|
|
|
|
|
|
|
In other words, after the end of a group, the matcher remembers the
|
|
|
|
beginning and end of the text matched by that group. Later on in the
|
|
|
|
regular expression you can use @samp{\} followed by @var{digit} to
|
|
|
|
match that same text, whatever it may have been.
|
|
|
|
|
|
|
|
The strings matching the first nine grouping constructs appearing in
|
|
|
|
the entire regular expression passed to a search or matching function
|
|
|
|
are assigned numbers 1 through 9 in the order that the open
|
|
|
|
parentheses appear in the regular expression. So you can use
|
|
|
|
@samp{\1} through @samp{\9} to refer to the text matched by the
|
|
|
|
corresponding grouping constructs.
|
|
|
|
|
|
|
|
For example, @samp{\(.*\)\1} matches any newline-free string that is
|
|
|
|
composed of two identical halves. The @samp{\(.*\)} matches the first
|
|
|
|
half, which may be anything, but the @samp{\1} that follows must match
|
|
|
|
the same exact text.
|
|
|
|
|
|
|
|
If a @samp{\( @dots{} \)} construct matches more than once (which can
|
|
|
|
happen, for instance, if it is followed by @samp{*}), only the last
|
|
|
|
match is recorded.
|
|
|
|
|
|
|
|
If a particular grouping construct in the regular expression was never
|
|
|
|
matched---for instance, if it appears inside of an alternative that
|
|
|
|
wasn't used, or inside of a repetition that repeated zero times---then
|
|
|
|
the corresponding @samp{\@var{digit}} construct never matches
|
2009-07-11 19:32:00 +00:00
|
|
|
anything. To use an artificial example, @samp{\(foo\(b*\)\|lose\)\2}
|
2007-09-06 04:25:08 +00:00
|
|
|
cannot match @samp{lose}: the second alternative inside the larger
|
|
|
|
group matches it, but then @samp{\2} is undefined and can't match
|
|
|
|
anything. But it can match @samp{foobb}, because the first
|
|
|
|
alternative matches @samp{foob} and @samp{\2} matches @samp{b}.
|
|
|
|
|
|
|
|
@item \w
|
|
|
|
@cindex @samp{\w} in regexp
|
|
|
|
matches any word-constituent character. The editor syntax table
|
|
|
|
determines which characters these are. @xref{Syntax Tables}.
|
|
|
|
|
|
|
|
@item \W
|
|
|
|
@cindex @samp{\W} in regexp
|
|
|
|
matches any character that is not a word constituent.
|
|
|
|
|
|
|
|
@item \s@var{code}
|
|
|
|
@cindex @samp{\s} in regexp
|
|
|
|
matches any character whose syntax is @var{code}. Here @var{code} is a
|
|
|
|
character that represents a syntax code: thus, @samp{w} for word
|
|
|
|
constituent, @samp{-} for whitespace, @samp{(} for open parenthesis,
|
|
|
|
etc. To represent whitespace syntax, use either @samp{-} or a space
|
|
|
|
character. @xref{Syntax Class Table}, for a list of syntax codes and
|
|
|
|
the characters that stand for them.
|
|
|
|
|
|
|
|
@item \S@var{code}
|
|
|
|
@cindex @samp{\S} in regexp
|
|
|
|
matches any character whose syntax is not @var{code}.
|
|
|
|
|
2011-08-16 10:53:33 +03:00
|
|
|
@cindex category, regexp search for
|
2022-05-09 13:38:40 +02:00
|
|
|
@item \c@var{code}
|
|
|
|
matches any character whose category is @var{code}. Here @var{code}
|
2022-05-09 16:02:58 +03:00
|
|
|
is a character that represents a category: for example, in the standard
|
|
|
|
category table, @samp{c} stands for Chinese characters and @samp{g}
|
|
|
|
stands for Greek characters. You can see the list of all the
|
|
|
|
currently defined categories with @w{@kbd{M-x describe-categories
|
|
|
|
@key{RET}}}. You can also define your own categories in addition to
|
|
|
|
the standard ones using the @code{define-category} function
|
|
|
|
(@pxref{Categories}).
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2022-05-09 13:38:40 +02:00
|
|
|
@item \C@var{code}
|
|
|
|
matches any character whose category is not @var{code}.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end table
|
|
|
|
|
|
|
|
The following regular expression constructs match the empty string---that is,
|
2022-05-09 13:38:40 +02:00
|
|
|
they don't consume any characters---but whether they match depends on the
|
2007-09-06 04:25:08 +00:00
|
|
|
context. For all, the beginning and end of the accessible portion of
|
|
|
|
the buffer are treated as if they were the actual beginning and end of
|
|
|
|
the buffer.
|
|
|
|
|
|
|
|
@table @samp
|
|
|
|
@item \`
|
|
|
|
@cindex @samp{\`} in regexp
|
|
|
|
matches the empty string, but only at the beginning
|
|
|
|
of the buffer or string being matched against.
|
|
|
|
|
|
|
|
@item \'
|
|
|
|
@cindex @samp{\'} in regexp
|
|
|
|
matches the empty string, but only at the end of
|
|
|
|
the buffer or string being matched against.
|
|
|
|
|
|
|
|
@item \=
|
|
|
|
@cindex @samp{\=} in regexp
|
|
|
|
matches the empty string, but only at point.
|
|
|
|
(This construct is not defined when matching against a string.)
|
|
|
|
|
|
|
|
@item \b
|
|
|
|
@cindex @samp{\b} in regexp
|
|
|
|
matches the empty string, but only at the beginning or
|
|
|
|
end of a word. Thus, @samp{\bfoo\b} matches any occurrence of
|
|
|
|
@samp{foo} as a separate word. @samp{\bballs?\b} matches
|
2013-10-23 13:20:09 -04:00
|
|
|
@samp{ball} or @samp{balls} as a separate word.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@samp{\b} matches at the beginning or end of the buffer (or string)
|
|
|
|
regardless of what text appears next to it.
|
|
|
|
|
|
|
|
@item \B
|
|
|
|
@cindex @samp{\B} in regexp
|
|
|
|
matches the empty string, but @emph{not} at the beginning or
|
|
|
|
end of a word, nor at the beginning or end of the buffer (or string).
|
|
|
|
|
|
|
|
@item \<
|
|
|
|
@cindex @samp{\<} in regexp
|
|
|
|
matches the empty string, but only at the beginning of a word.
|
|
|
|
@samp{\<} matches at the beginning of the buffer (or string) only if a
|
|
|
|
word-constituent character follows.
|
|
|
|
|
|
|
|
@item \>
|
|
|
|
@cindex @samp{\>} in regexp
|
|
|
|
matches the empty string, but only at the end of a word. @samp{\>}
|
|
|
|
matches at the end of the buffer (or string) only if the contents end
|
|
|
|
with a word-constituent character.
|
|
|
|
|
|
|
|
@item \_<
|
|
|
|
@cindex @samp{\_<} in regexp
|
|
|
|
matches the empty string, but only at the beginning of a symbol. A
|
|
|
|
symbol is a sequence of one or more word or symbol constituent
|
|
|
|
characters. @samp{\_<} matches at the beginning of the buffer (or
|
|
|
|
string) only if a symbol-constituent character follows.
|
|
|
|
|
|
|
|
@item \_>
|
|
|
|
@cindex @samp{\_>} in regexp
|
|
|
|
matches the empty string, but only at the end of a symbol. @samp{\_>}
|
|
|
|
matches at the end of the buffer (or string) only if the contents end
|
|
|
|
with a symbol-constituent character.
|
|
|
|
@end table
|
|
|
|
|
|
|
|
@kindex invalid-regexp
|
|
|
|
Not every string is a valid regular expression. For example, a string
|
2023-06-19 11:09:00 -07:00
|
|
|
that ends inside a bracket expression without a terminating @samp{]}
|
2007-09-06 04:25:08 +00:00
|
|
|
is invalid, and so is a string that ends with a single @samp{\}. If
|
|
|
|
an invalid regular expression is passed to any of the search functions,
|
|
|
|
an @code{invalid-regexp} error is signaled.
|
|
|
|
|
|
|
|
@node Regexp Example
|
|
|
|
@subsection Complex Regexp Example
|
|
|
|
|
|
|
|
Here is a complicated regexp which was formerly used by Emacs to
|
|
|
|
recognize the end of a sentence together with any whitespace that
|
|
|
|
follows. (Nowadays Emacs uses a similar but more complex default
|
|
|
|
regexp constructed by the function @code{sentence-end}.
|
|
|
|
@xref{Standard Regexps}.)
|
|
|
|
|
2012-03-28 00:57:42 -07:00
|
|
|
Below, we show first the regexp as a string in Lisp syntax (to
|
|
|
|
distinguish spaces from tab characters), and then the result of
|
|
|
|
evaluating it. The string constant begins and ends with a
|
2007-09-06 04:25:08 +00:00
|
|
|
double-quote. @samp{\"} stands for a double-quote as part of the
|
|
|
|
string, @samp{\\} for a backslash as part of the string, @samp{\t} for a
|
|
|
|
tab and @samp{\n} for a newline.
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
"[.?!][]\"')@}]*\\($\\| $\\|\t\\|@ @ \\)[ \t\n]*"
|
|
|
|
@result{} "[.?!][]\"')@}]*\\($\\| $\\| \\|@ @ \\)[
|
|
|
|
]*"
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
2012-03-28 00:57:42 -07:00
|
|
|
In the output, tab and newline appear as themselves.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
This regular expression contains four parts in succession and can be
|
|
|
|
deciphered as follows:
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item [.?!]
|
2023-06-19 11:09:00 -07:00
|
|
|
The first part of the pattern is a bracket expression that matches
|
2007-09-06 04:25:08 +00:00
|
|
|
any one of three characters: period, question mark, and exclamation
|
|
|
|
mark. The match must begin with one of these three characters. (This
|
|
|
|
is one point where the new default regexp used by Emacs differs from
|
|
|
|
the old. The new value also allows some non-@acronym{ASCII}
|
|
|
|
characters that end a sentence without any following whitespace.)
|
|
|
|
|
|
|
|
@item []\"')@}]*
|
|
|
|
The second part of the pattern matches any closing braces and quotation
|
|
|
|
marks, zero or more of them, that may follow the period, question mark
|
|
|
|
or exclamation mark. The @code{\"} is Lisp syntax for a double-quote in
|
|
|
|
a string. The @samp{*} at the end indicates that the immediately
|
2023-06-19 11:09:00 -07:00
|
|
|
preceding regular expression (a bracket expression, in this case) may be
|
2007-09-06 04:25:08 +00:00
|
|
|
repeated zero or more times.
|
|
|
|
|
|
|
|
@item \\($\\|@ $\\|\t\\|@ @ \\)
|
|
|
|
The third part of the pattern matches the whitespace that follows the
|
|
|
|
end of a sentence: the end of a line (optionally with a space), or a
|
|
|
|
tab, or two spaces. The double backslashes mark the parentheses and
|
|
|
|
vertical bars as regular expression syntax; the parentheses delimit a
|
|
|
|
group and the vertical bars separate alternatives. The dollar sign is
|
|
|
|
used to match the end of a line.
|
|
|
|
|
|
|
|
@item [ \t\n]*
|
|
|
|
Finally, the last part of the pattern matches any additional whitespace
|
|
|
|
beyond the minimum needed to end a sentence.
|
|
|
|
@end table
|
|
|
|
|
2019-07-04 13:01:52 +02:00
|
|
|
@ifnottex
|
|
|
|
In the @code{rx} notation (@pxref{Rx Notation}), the regexp could be written
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx (any ".?!") ; Punctuation ending sentence.
|
|
|
|
(zero-or-more (any "\"')]@}")) ; Closing quotes or brackets.
|
|
|
|
(or line-end
|
|
|
|
(seq " " line-end)
|
|
|
|
"\t"
|
|
|
|
" ") ; Two spaces.
|
|
|
|
(zero-or-more (any "\t\n "))) ; Optional extra whitespace.
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
Since @code{rx} regexps are just S-expressions, they can be formatted
|
|
|
|
and commented as such.
|
|
|
|
@end ifnottex
|
|
|
|
|
|
|
|
@ifnottex
|
|
|
|
@node Rx Notation
|
|
|
|
@subsection The @code{rx} Structured Regexp Notation
|
|
|
|
@cindex rx
|
|
|
|
@cindex regexp syntax
|
|
|
|
|
|
|
|
As an alternative to the string-based syntax, Emacs provides the
|
|
|
|
structured @code{rx} notation based on Lisp S-expressions. This
|
|
|
|
notation is usually easier to read, write and maintain than regexp
|
|
|
|
strings, and can be indented and commented freely. It requires a
|
|
|
|
conversion into string form since that is what regexp functions
|
|
|
|
expect, but that conversion typically takes place during
|
|
|
|
byte-compilation rather than when the Lisp code using the regexp is
|
|
|
|
run.
|
|
|
|
|
|
|
|
Here is an @code{rx} regexp@footnote{It could be written much
|
|
|
|
simpler with non-greedy operators (how?), but that would make the
|
|
|
|
example less interesting.} that matches a block comment in the C
|
|
|
|
programming language:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
2024-09-09 15:18:36 +02:00
|
|
|
(rx "/*" ; Initial /*
|
2019-07-04 13:01:52 +02:00
|
|
|
(zero-or-more
|
2024-09-09 15:18:36 +02:00
|
|
|
(or (not "*") ; Either non-*,
|
|
|
|
(seq "*" ; or * followed by
|
|
|
|
(not "/")))) ; non-/
|
|
|
|
(one-or-more "*") ; At least one star,
|
|
|
|
"/") ; and the final /
|
2019-07-04 13:01:52 +02:00
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
or, using shorter synonyms and written more compactly,
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx "/*"
|
2020-03-09 12:13:45 +01:00
|
|
|
(* (| (not "*")
|
|
|
|
(: "*" (not "/"))))
|
2019-07-04 13:01:52 +02:00
|
|
|
(+ "*") "/")
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
In conventional string syntax, it would be written
|
|
|
|
|
|
|
|
@example
|
|
|
|
"/\\*\\(?:[^*]\\|\\*[^/]\\)*\\*+/"
|
|
|
|
@end example
|
|
|
|
|
|
|
|
The @code{rx} notation is mainly useful in Lisp code; it cannot be
|
|
|
|
used in most interactive situations where a regexp is requested, such
|
|
|
|
as when running @code{query-replace-regexp} or in variable
|
2019-12-09 18:44:35 -08:00
|
|
|
customization.
|
2019-07-04 13:01:52 +02:00
|
|
|
|
|
|
|
@menu
|
|
|
|
* Rx Constructs:: Constructs valid in rx forms.
|
|
|
|
* Rx Functions:: Functions and macros that use rx forms.
|
Add rx extension mechanism
Add a built-in set of extension macros: `rx-define', `rx-let' and
`rx-let-eval'.
* lisp/emacs-lisp/rx.el (rx-constituents, rx-to-string): Doc updates.
(rx--builtin-symbols, rx--builtin-names, rx--local-definitions)
(rx--lookup-def, rx--substitute, rx--expand-template)
(rx--make-binding, rx--make-named-binding, rx--extend-local-defs)
(rx-let-eval, rx-let, rx-define): New.
(rx--translate-symbol, rx--translate-form): Use extensions if any.
(rx): Use local definitions.
* test/lisp/emacs-lisp/rx-tests.el (rx-let, rx-define)
(rx-to-string-define, rx-let-define, rx-let-eval): New.
* etc/NEWS (Changes in Specialized Modes and Packages):
* doc/lispref/searching.texi (Rx Notation, Rx Functions, Extending Rx):
Add node about rx extensions.
2019-09-25 14:29:50 -07:00
|
|
|
* Extending Rx:: How to define your own rx forms.
|
2019-07-04 13:01:52 +02:00
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Rx Constructs
|
|
|
|
@subsubsection Constructs in @code{rx} regexps
|
|
|
|
|
|
|
|
The various forms in @code{rx} regexps are described below. The
|
2022-10-24 12:35:47 +02:00
|
|
|
shorthand @var{rx} represents any @code{rx} form. @var{rx}@dots{}
|
|
|
|
means zero or more @code{rx} forms and, unless stated otherwise,
|
|
|
|
matches these forms in sequence as if wrapped in a @code{(seq @dots{})}
|
|
|
|
subform.
|
|
|
|
|
2022-10-24 14:46:24 +02:00
|
|
|
These are all valid arguments to the @code{rx} macro. All forms are
|
|
|
|
defined by their described semantics; the corresponding string regexps
|
2022-10-24 15:57:39 +02:00
|
|
|
are provided for ease of understanding only. @var{A}, @var{B}, @dots{}
|
|
|
|
denote (suitably bracketed) string regexp subexpressions therein.
|
2019-07-04 13:01:52 +02:00
|
|
|
|
|
|
|
@subsubheading Literals
|
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @code{"some-string"}
|
|
|
|
Match the string @samp{some-string} literally. There are no
|
|
|
|
characters with special meaning, unlike in string regexps.
|
|
|
|
|
|
|
|
@item @code{?C}
|
|
|
|
Match the character @samp{C} literally.
|
|
|
|
@end table
|
|
|
|
|
|
|
|
@subsubheading Sequence and alternative
|
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @code{(seq @var{rx}@dots{})}
|
|
|
|
@cindex @code{seq} in rx
|
|
|
|
@itemx @code{(sequence @var{rx}@dots{})}
|
|
|
|
@cindex @code{sequence} in rx
|
|
|
|
@itemx @code{(: @var{rx}@dots{})}
|
|
|
|
@cindex @code{:} in rx
|
|
|
|
@itemx @code{(and @var{rx}@dots{})}
|
|
|
|
@cindex @code{and} in rx
|
|
|
|
Match the @var{rx}s in sequence. Without arguments, the expression
|
|
|
|
matches the empty string.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}@var{B}@dots{}}
|
|
|
|
(subexpressions in sequence).
|
|
|
|
|
|
|
|
@item @code{(or @var{rx}@dots{})}
|
|
|
|
@cindex @code{or} in rx
|
|
|
|
@itemx @code{(| @var{rx}@dots{})}
|
|
|
|
@cindex @code{|} in rx
|
2020-02-11 13:23:10 +01:00
|
|
|
Match exactly one of the @var{rx}s.
|
2020-02-11 20:04:42 +01:00
|
|
|
If all arguments are strings, characters, or @code{or} forms
|
|
|
|
so constrained, the longest possible match will always be used.
|
|
|
|
Otherwise, either the longest match or the
|
2020-02-11 13:23:10 +01:00
|
|
|
first (in left-to-right order) will be used.
|
2019-07-04 13:01:52 +02:00
|
|
|
Without arguments, the expression will not match anything at all.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}\|@var{B}\|@dots{}}.
|
2019-10-07 18:28:18 +02:00
|
|
|
|
|
|
|
@item @code{unmatchable}
|
|
|
|
@cindex @code{unmatchable} in rx
|
|
|
|
Refuse any match. Equivalent to @code{(or)}.
|
|
|
|
@xref{regexp-unmatchable}.
|
2019-07-04 13:01:52 +02:00
|
|
|
@end table
|
|
|
|
|
|
|
|
@subsubheading Repetition
|
|
|
|
|
|
|
|
Normally, repetition forms are greedy, in that they attempt to match
|
|
|
|
as many times as possible. Some forms are non-greedy; they try to
|
|
|
|
match as few times as possible (@pxref{Non-greedy repetition}).
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item (zero-or-more @var{rx}@dots{})
|
|
|
|
@cindex @code{zero-or-more} in rx
|
|
|
|
@itemx (0+ @var{rx}@dots{})
|
|
|
|
@cindex @code{0+} in rx
|
|
|
|
Match the @var{rx}s zero or more times. Greedy by default.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}*} (greedy),
|
|
|
|
@samp{@var{A}*?} (non-greedy)
|
|
|
|
|
|
|
|
@item (one-or-more @var{rx}@dots{})
|
|
|
|
@cindex @code{one-or-more} in rx
|
|
|
|
@itemx (1+ @var{rx}@dots{})
|
|
|
|
@cindex @code{1+} in rx
|
|
|
|
Match the @var{rx}s one or more times. Greedy by default.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}+} (greedy),
|
|
|
|
@samp{@var{A}+?} (non-greedy)
|
|
|
|
|
|
|
|
@item (zero-or-one @var{rx}@dots{})
|
|
|
|
@cindex @code{zero-or-one} in rx
|
|
|
|
@itemx (optional @var{rx}@dots{})
|
|
|
|
@cindex @code{optional} in rx
|
|
|
|
@itemx (opt @var{rx}@dots{})
|
|
|
|
@cindex @code{opt} in rx
|
|
|
|
Match the @var{rx}s once or an empty string. Greedy by default.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}?} (greedy),
|
|
|
|
@samp{@var{A}??} (non-greedy).
|
|
|
|
|
|
|
|
@item (* @var{rx}@dots{})
|
|
|
|
@cindex @code{*} in rx
|
|
|
|
Match the @var{rx}s zero or more times. Greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}*}
|
|
|
|
|
|
|
|
@item (+ @var{rx}@dots{})
|
|
|
|
@cindex @code{+} in rx
|
|
|
|
Match the @var{rx}s one or more times. Greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}+}
|
|
|
|
|
|
|
|
@item (? @var{rx}@dots{})
|
|
|
|
@cindex @code{?} in rx
|
|
|
|
Match the @var{rx}s once or an empty string. Greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}?}
|
|
|
|
|
|
|
|
@item (*? @var{rx}@dots{})
|
|
|
|
@cindex @code{*?} in rx
|
|
|
|
Match the @var{rx}s zero or more times. Non-greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}*?}
|
|
|
|
|
|
|
|
@item (+? @var{rx}@dots{})
|
|
|
|
@cindex @code{+?} in rx
|
|
|
|
Match the @var{rx}s one or more times. Non-greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}+?}
|
|
|
|
|
|
|
|
@item (?? @var{rx}@dots{})
|
|
|
|
@cindex @code{??} in rx
|
|
|
|
Match the @var{rx}s or an empty string. Non-greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}??}
|
|
|
|
|
|
|
|
@item (= @var{n} @var{rx}@dots{})
|
|
|
|
@cindex @code{=} in rx
|
|
|
|
@itemx (repeat @var{n} @var{rx})
|
|
|
|
Match the @var{rx}s exactly @var{n} times.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}\@{@var{n}\@}}
|
|
|
|
|
|
|
|
@item (>= @var{n} @var{rx}@dots{})
|
|
|
|
@cindex @code{>=} in rx
|
|
|
|
Match the @var{rx}s @var{n} or more times. Greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}\@{@var{n},\@}}
|
|
|
|
|
|
|
|
@item (** @var{n} @var{m} @var{rx}@dots{})
|
|
|
|
@cindex @code{**} in rx
|
|
|
|
@itemx (repeat @var{n} @var{m} @var{rx}@dots{})
|
|
|
|
@cindex @code{repeat} in rx
|
|
|
|
Match the @var{rx}s at least @var{n} but no more than @var{m} times. Greedy.@*
|
|
|
|
Corresponding string regexp: @samp{@var{A}\@{@var{n},@var{m}\@}}
|
|
|
|
@end table
|
|
|
|
|
|
|
|
The greediness of some repetition forms can be controlled using the
|
|
|
|
following constructs. However, it is usually better to use the
|
|
|
|
explicit non-greedy forms above when such matching is required.
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item (minimal-match @var{rx})
|
|
|
|
@cindex @code{minimal-match} in rx
|
|
|
|
Match @var{rx}, with @code{zero-or-more}, @code{0+},
|
|
|
|
@code{one-or-more}, @code{1+}, @code{zero-or-one}, @code{opt} and
|
2019-08-05 10:28:17 +02:00
|
|
|
@code{optional} using non-greedy matching.
|
2019-07-04 13:01:52 +02:00
|
|
|
|
|
|
|
@item (maximal-match @var{rx})
|
|
|
|
@cindex @code{maximal-match} in rx
|
|
|
|
Match @var{rx}, with @code{zero-or-more}, @code{0+},
|
|
|
|
@code{one-or-more}, @code{1+}, @code{zero-or-one}, @code{opt} and
|
2019-09-17 12:01:15 +02:00
|
|
|
@code{optional} using greedy matching. This is the default.
|
2019-07-04 13:01:52 +02:00
|
|
|
@end table
|
|
|
|
|
|
|
|
@subsubheading Matching single characters
|
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @code{(any @var{set}@dots{})}
|
|
|
|
@cindex @code{any} in rx
|
|
|
|
@itemx @code{(char @var{set}@dots{})}
|
|
|
|
@cindex @code{char} in rx
|
|
|
|
@itemx @code{(in @var{set}@dots{})}
|
|
|
|
@cindex @code{in} in rx
|
|
|
|
@cindex character class in rx
|
|
|
|
Match a single character from one of the @var{set}s. Each @var{set}
|
|
|
|
is a character, a string representing the set of its characters, a
|
|
|
|
range or a character class (see below). A range is either a
|
|
|
|
hyphen-separated string like @code{"A-Z"}, or a cons of characters
|
|
|
|
like @code{(?A . ?Z)}.
|
|
|
|
|
|
|
|
Note that hyphen (@code{-}) is special in strings in this construct,
|
|
|
|
since it acts as a range separator. To include a hyphen, add it as a
|
|
|
|
separate character or single-character string.@*
|
|
|
|
Corresponding string regexp: @samp{[@dots{}]}
|
|
|
|
|
|
|
|
@item @code{(not @var{charspec})}
|
|
|
|
@cindex @code{not} in rx
|
|
|
|
Match a character not included in @var{charspec}. @var{charspec} can
|
2019-12-13 13:10:58 +01:00
|
|
|
be a character, a single-character string, an @code{any}, @code{not},
|
|
|
|
@code{or}, @code{intersection}, @code{syntax} or @code{category} form,
|
|
|
|
or a character class.
|
2019-12-12 23:04:00 +01:00
|
|
|
If @var{charspec} is an @code{or} form, its arguments have the same
|
|
|
|
restrictions as those of @code{intersection}; see below.@*
|
2019-07-04 13:01:52 +02:00
|
|
|
Corresponding string regexp: @samp{[^@dots{}]}, @samp{\S@var{code}},
|
|
|
|
@samp{\C@var{code}}
|
|
|
|
|
2019-12-12 23:04:00 +01:00
|
|
|
@item @code{(intersection @var{charset}@dots{})}
|
Add `union' and `intersection' to rx (bug#37849)
These character set operations, together with `not' for set
complement, improve the compositionality of rx, and reduce duplication
in complicated cases. Named character classes are not permitted in
set operations.
* lisp/emacs-lisp/rx.el (rx--translate-any): Split into multiple
functions.
(rx--foldl, rx--parse-any, rx--generate-alt, rx--intervals-to-alt)
(rx--complement-intervals, rx--intersect-intervals)
(rx--union-intervals, rx--charset-intervals, rx--charset-union)
(rx--charset-all, rx--charset-intersection, rx--translate-union)
(rx--translate-intersection): New.
(rx--translate-not, rx--translate-form, rx--builtin-forms, rx):
Add `union' and `intersection'.
* test/lisp/emacs-lisp/rx-tests.el (rx-union ,rx-def-in-union)
(rx-intersection, rx-def-in-intersection): New tests.
* doc/lispref/searching.texi (Rx Constructs):
* etc/NEWS:
Document `union' and `intersection'.
2019-12-06 22:23:57 +01:00
|
|
|
@cindex @code{intersection} in rx
|
2019-12-12 23:04:00 +01:00
|
|
|
Match a character included in all of the @var{charset}s.
|
2019-12-13 13:10:58 +01:00
|
|
|
Each @var{charset} can be a character, a single-character string, an
|
|
|
|
@code{any} form without character classes, or an @code{intersection},
|
|
|
|
@code{or} or @code{not} form whose arguments are also @var{charset}s.
|
Add `union' and `intersection' to rx (bug#37849)
These character set operations, together with `not' for set
complement, improve the compositionality of rx, and reduce duplication
in complicated cases. Named character classes are not permitted in
set operations.
* lisp/emacs-lisp/rx.el (rx--translate-any): Split into multiple
functions.
(rx--foldl, rx--parse-any, rx--generate-alt, rx--intervals-to-alt)
(rx--complement-intervals, rx--intersect-intervals)
(rx--union-intervals, rx--charset-intervals, rx--charset-union)
(rx--charset-all, rx--charset-intersection, rx--translate-union)
(rx--translate-intersection): New.
(rx--translate-not, rx--translate-form, rx--builtin-forms, rx):
Add `union' and `intersection'.
* test/lisp/emacs-lisp/rx-tests.el (rx-union ,rx-def-in-union)
(rx-intersection, rx-def-in-intersection): New tests.
* doc/lispref/searching.texi (Rx Constructs):
* etc/NEWS:
Document `union' and `intersection'.
2019-12-06 22:23:57 +01:00
|
|
|
|
2019-07-04 13:01:52 +02:00
|
|
|
@item @code{not-newline}, @code{nonl}
|
|
|
|
@cindex @code{not-newline} in rx
|
|
|
|
@cindex @code{nonl} in rx
|
|
|
|
Match any character except a newline.@*
|
|
|
|
Corresponding string regexp: @samp{.} (dot)
|
|
|
|
|
2019-10-07 18:07:16 +02:00
|
|
|
@item @code{anychar}, @code{anything}
|
|
|
|
@cindex @code{anychar} in rx
|
2019-07-04 13:01:52 +02:00
|
|
|
@cindex @code{anything} in rx
|
|
|
|
Match any character.@*
|
|
|
|
Corresponding string regexp: @samp{.\|\n} (for example)
|
|
|
|
|
|
|
|
@item character class
|
|
|
|
@cindex character class in rx
|
|
|
|
Match a character from a named character class:
|
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @code{alpha}, @code{alphabetic}, @code{letter}
|
|
|
|
Match alphabetic characters. More precisely, match characters whose
|
|
|
|
Unicode @samp{general-category} property indicates that they are
|
|
|
|
alphabetic.
|
|
|
|
|
|
|
|
@item @code{alnum}, @code{alphanumeric}
|
|
|
|
Match alphabetic characters and digits. More precisely, match
|
|
|
|
characters whose Unicode @samp{general-category} property indicates
|
|
|
|
that they are alphabetic or decimal digits.
|
|
|
|
|
|
|
|
@item @code{digit}, @code{numeric}, @code{num}
|
|
|
|
Match the digits @samp{0}--@samp{9}.
|
|
|
|
|
|
|
|
@item @code{xdigit}, @code{hex-digit}, @code{hex}
|
|
|
|
Match the hexadecimal digits @samp{0}--@samp{9}, @samp{A}--@samp{F}
|
|
|
|
and @samp{a}--@samp{f}.
|
|
|
|
|
|
|
|
@item @code{cntrl}, @code{control}
|
|
|
|
Match any character whose code is in the range 0--31.
|
|
|
|
|
|
|
|
@item @code{blank}
|
|
|
|
Match horizontal whitespace. More precisely, match characters whose
|
|
|
|
Unicode @samp{general-category} property indicates that they are
|
|
|
|
spacing separators.
|
|
|
|
|
|
|
|
@item @code{space}, @code{whitespace}, @code{white}
|
|
|
|
Match any character that has whitespace syntax
|
|
|
|
(@pxref{Syntax Class Table}).
|
|
|
|
|
|
|
|
@item @code{lower}, @code{lower-case}
|
|
|
|
Match anything lower-case, as determined by the current case table.
|
2022-10-27 13:09:49 +02:00
|
|
|
If @code{case-fold-search} is non-@code{nil}, this also matches any
|
2019-07-04 13:01:52 +02:00
|
|
|
upper-case letter.
|
|
|
|
|
|
|
|
@item @code{upper}, @code{upper-case}
|
|
|
|
Match anything upper-case, as determined by the current case table.
|
2022-10-27 13:09:49 +02:00
|
|
|
If @code{case-fold-search} is non-@code{nil}, this also matches any
|
2019-07-04 13:01:52 +02:00
|
|
|
lower-case letter.
|
|
|
|
|
|
|
|
@item @code{graph}, @code{graphic}
|
|
|
|
Match any character except whitespace, @acronym{ASCII} and
|
|
|
|
non-@acronym{ASCII} control characters, surrogates, and codepoints
|
|
|
|
unassigned by Unicode, as indicated by the Unicode
|
|
|
|
@samp{general-category} property.
|
|
|
|
|
|
|
|
@item @code{print}, @code{printing}
|
|
|
|
Match whitespace or a character matched by @code{graph}.
|
|
|
|
|
|
|
|
@item @code{punct}, @code{punctuation}
|
|
|
|
Match any punctuation character. (At present, for multibyte
|
|
|
|
characters, anything that has non-word syntax.)
|
|
|
|
|
|
|
|
@item @code{word}, @code{wordchar}
|
|
|
|
Match any character that has word syntax (@pxref{Syntax Class Table}).
|
|
|
|
|
|
|
|
@item @code{ascii}
|
|
|
|
Match any @acronym{ASCII} character (codes 0--127).
|
|
|
|
|
|
|
|
@item @code{nonascii}
|
|
|
|
Match any non-@acronym{ASCII} character (but not raw bytes).
|
|
|
|
@end table
|
|
|
|
|
2023-07-28 11:14:01 +02:00
|
|
|
The classes @code{space}, @code{word} and @code{punct} use the
|
|
|
|
syntax-table of the current buffer but not any overriding syntax text
|
|
|
|
properties (@pxref{Syntax Properties}).@*
|
2019-07-04 13:01:52 +02:00
|
|
|
Corresponding string regexp: @samp{[[:@var{class}:]]}
|
|
|
|
|
|
|
|
@item @code{(syntax @var{syntax})}
|
|
|
|
@cindex @code{syntax} in rx
|
|
|
|
Match a character with syntax @var{syntax}, being one of the following
|
|
|
|
names:
|
|
|
|
|
|
|
|
@multitable {@code{close-parenthesis}} {Syntax character}
|
|
|
|
@headitem Syntax name @tab Syntax character
|
|
|
|
@item @code{whitespace} @tab @code{-}
|
|
|
|
@item @code{punctuation} @tab @code{.}
|
|
|
|
@item @code{word} @tab @code{w}
|
|
|
|
@item @code{symbol} @tab @code{_}
|
|
|
|
@item @code{open-parenthesis} @tab @code{(}
|
|
|
|
@item @code{close-parenthesis} @tab @code{)}
|
|
|
|
@item @code{expression-prefix} @tab @code{'}
|
|
|
|
@item @code{string-quote} @tab @code{"}
|
|
|
|
@item @code{paired-delimiter} @tab @code{$}
|
|
|
|
@item @code{escape} @tab @code{\}
|
|
|
|
@item @code{character-quote} @tab @code{/}
|
|
|
|
@item @code{comment-start} @tab @code{<}
|
|
|
|
@item @code{comment-end} @tab @code{>}
|
|
|
|
@item @code{string-delimiter} @tab @code{|}
|
|
|
|
@item @code{comment-delimiter} @tab @code{!}
|
|
|
|
@end multitable
|
|
|
|
|
|
|
|
For details, @pxref{Syntax Class Table}. Please note that
|
|
|
|
@code{(syntax punctuation)} is @emph{not} equivalent to the character class
|
|
|
|
@code{punctuation}.@*
|
2021-09-26 14:36:02 +02:00
|
|
|
Corresponding string regexp: @samp{\s@var{char}} where @var{char} is the
|
|
|
|
syntax character.
|
2019-07-04 13:01:52 +02:00
|
|
|
|
2019-07-07 14:22:23 -07:00
|
|
|
@item @code{(category @var{category})}
|
2019-07-04 13:01:52 +02:00
|
|
|
@cindex @code{category} in rx
|
|
|
|
Match a character in category @var{category}, which is either one of
|
|
|
|
the names below or its category character.
|
|
|
|
|
|
|
|
@multitable {@code{vowel-modifying-diacritical-mark}} {Category character}
|
|
|
|
@headitem Category name @tab Category character
|
|
|
|
@item @code{space-for-indent} @tab space
|
|
|
|
@item @code{base} @tab @code{.}
|
|
|
|
@item @code{consonant} @tab @code{0}
|
|
|
|
@item @code{base-vowel} @tab @code{1}
|
|
|
|
@item @code{upper-diacritical-mark} @tab @code{2}
|
|
|
|
@item @code{lower-diacritical-mark} @tab @code{3}
|
|
|
|
@item @code{tone-mark} @tab @code{4}
|
|
|
|
@item @code{symbol} @tab @code{5}
|
|
|
|
@item @code{digit} @tab @code{6}
|
|
|
|
@item @code{vowel-modifying-diacritical-mark} @tab @code{7}
|
|
|
|
@item @code{vowel-sign} @tab @code{8}
|
|
|
|
@item @code{semivowel-lower} @tab @code{9}
|
|
|
|
@item @code{not-at-end-of-line} @tab @code{<}
|
|
|
|
@item @code{not-at-beginning-of-line} @tab @code{>}
|
|
|
|
@item @code{alpha-numeric-two-byte} @tab @code{A}
|
|
|
|
@item @code{chinese-two-byte} @tab @code{C}
|
|
|
|
@item @code{greek-two-byte} @tab @code{G}
|
|
|
|
@item @code{japanese-hiragana-two-byte} @tab @code{H}
|
|
|
|
@item @code{indian-two-byte} @tab @code{I}
|
|
|
|
@item @code{japanese-katakana-two-byte} @tab @code{K}
|
|
|
|
@item @code{strong-left-to-right} @tab @code{L}
|
|
|
|
@item @code{korean-hangul-two-byte} @tab @code{N}
|
|
|
|
@item @code{strong-right-to-left} @tab @code{R}
|
|
|
|
@item @code{cyrillic-two-byte} @tab @code{Y}
|
|
|
|
@item @code{combining-diacritic} @tab @code{^}
|
|
|
|
@item @code{ascii} @tab @code{a}
|
|
|
|
@item @code{arabic} @tab @code{b}
|
|
|
|
@item @code{chinese} @tab @code{c}
|
|
|
|
@item @code{ethiopic} @tab @code{e}
|
|
|
|
@item @code{greek} @tab @code{g}
|
|
|
|
@item @code{korean} @tab @code{h}
|
|
|
|
@item @code{indian} @tab @code{i}
|
|
|
|
@item @code{japanese} @tab @code{j}
|
|
|
|
@item @code{japanese-katakana} @tab @code{k}
|
|
|
|
@item @code{latin} @tab @code{l}
|
|
|
|
@item @code{lao} @tab @code{o}
|
|
|
|
@item @code{tibetan} @tab @code{q}
|
|
|
|
@item @code{japanese-roman} @tab @code{r}
|
|
|
|
@item @code{thai} @tab @code{t}
|
|
|
|
@item @code{vietnamese} @tab @code{v}
|
|
|
|
@item @code{hebrew} @tab @code{w}
|
|
|
|
@item @code{cyrillic} @tab @code{y}
|
|
|
|
@item @code{can-break} @tab @code{|}
|
|
|
|
@end multitable
|
|
|
|
|
|
|
|
For more information about currently defined categories, run the
|
|
|
|
command @kbd{M-x describe-categories @key{RET}}. For how to define
|
|
|
|
new categories, @pxref{Categories}.@*
|
2021-09-26 14:36:02 +02:00
|
|
|
Corresponding string regexp: @samp{\c@var{char}} where @var{char} is the
|
|
|
|
category character.
|
2019-07-04 13:01:52 +02:00
|
|
|
@end table
|
|
|
|
|
|
|
|
@subsubheading Zero-width assertions
|
|
|
|
|
|
|
|
These all match the empty string, but only in specific places.
|
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @code{line-start}, @code{bol}
|
|
|
|
@cindex @code{line-start} in rx
|
|
|
|
@cindex @code{bol} in rx
|
|
|
|
Match at the beginning of a line.@*
|
|
|
|
Corresponding string regexp: @samp{^}
|
|
|
|
|
|
|
|
@item @code{line-end}, @code{eol}
|
|
|
|
@cindex @code{line-end} in rx
|
|
|
|
@cindex @code{eol} in rx
|
|
|
|
Match at the end of a line.@*
|
|
|
|
Corresponding string regexp: @samp{$}
|
|
|
|
|
|
|
|
@item @code{string-start}, @code{bos}, @code{buffer-start}, @code{bot}
|
|
|
|
@cindex @code{string-start} in rx
|
|
|
|
@cindex @code{bos} in rx
|
|
|
|
@cindex @code{buffer-start} in rx
|
|
|
|
@cindex @code{bot} in rx
|
|
|
|
Match at the start of the string or buffer being matched against.@*
|
|
|
|
Corresponding string regexp: @samp{\`}
|
|
|
|
|
|
|
|
@item @code{string-end}, @code{eos}, @code{buffer-end}, @code{eot}
|
|
|
|
@cindex @code{string-end} in rx
|
|
|
|
@cindex @code{eos} in rx
|
|
|
|
@cindex @code{buffer-end} in rx
|
|
|
|
@cindex @code{eot} in rx
|
|
|
|
Match at the end of the string or buffer being matched against.@*
|
|
|
|
Corresponding string regexp: @samp{\'}
|
|
|
|
|
|
|
|
@item @code{point}
|
|
|
|
@cindex @code{point} in rx
|
|
|
|
Match at point.@*
|
|
|
|
Corresponding string regexp: @samp{\=}
|
|
|
|
|
2019-10-20 19:51:08 +02:00
|
|
|
@item @code{word-start}, @code{bow}
|
2019-07-04 13:01:52 +02:00
|
|
|
@cindex @code{word-start} in rx
|
2019-10-20 19:51:08 +02:00
|
|
|
@cindex @code{bow} in rx
|
2019-07-04 13:01:52 +02:00
|
|
|
Match at the beginning of a word.@*
|
|
|
|
Corresponding string regexp: @samp{\<}
|
|
|
|
|
2019-10-20 19:51:08 +02:00
|
|
|
@item @code{word-end}, @code{eow}
|
2019-07-04 13:01:52 +02:00
|
|
|
@cindex @code{word-end} in rx
|
2019-10-20 19:51:08 +02:00
|
|
|
@cindex @code{eow} in rx
|
2019-07-04 13:01:52 +02:00
|
|
|
Match at the end of a word.@*
|
|
|
|
Corresponding string regexp: @samp{\>}
|
|
|
|
|
|
|
|
@item @code{word-boundary}
|
|
|
|
@cindex @code{word-boundary} in rx
|
|
|
|
Match at the beginning or end of a word.@*
|
|
|
|
Corresponding string regexp: @samp{\b}
|
|
|
|
|
|
|
|
@item @code{not-word-boundary}
|
|
|
|
@cindex @code{not-word-boundary} in rx
|
|
|
|
Match anywhere but at the beginning or end of a word.@*
|
|
|
|
Corresponding string regexp: @samp{\B}
|
|
|
|
|
|
|
|
@item @code{symbol-start}
|
|
|
|
@cindex @code{symbol-start} in rx
|
|
|
|
Match at the beginning of a symbol.@*
|
|
|
|
Corresponding string regexp: @samp{\_<}
|
|
|
|
|
|
|
|
@item @code{symbol-end}
|
|
|
|
@cindex @code{symbol-end} in rx
|
|
|
|
Match at the end of a symbol.@*
|
|
|
|
Corresponding string regexp: @samp{\_>}
|
|
|
|
@end table
|
|
|
|
|
|
|
|
@subsubheading Capture groups
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item (group @var{rx}@dots{})
|
|
|
|
@cindex @code{group} in rx
|
|
|
|
@itemx (submatch @var{rx}@dots{})
|
|
|
|
@cindex @code{submatch} in rx
|
|
|
|
Match the @var{rx}s, making the matched text and position accessible
|
|
|
|
in the match data. The first group in a regexp is numbered 1;
|
2020-11-25 12:39:56 +01:00
|
|
|
subsequent groups will be numbered one above the previously
|
|
|
|
highest-numbered group in the pattern so far.@*
|
2019-07-04 13:01:52 +02:00
|
|
|
Corresponding string regexp: @samp{\(@dots{}\)}
|
|
|
|
|
|
|
|
@item (group-n @var{n} @var{rx}@dots{})
|
|
|
|
@cindex @code{group-n} in rx
|
|
|
|
@itemx (submatch-n @var{n} @var{rx}@dots{})
|
|
|
|
@cindex @code{submatch-n} in rx
|
|
|
|
Like @code{group}, but explicitly assign the group number @var{n}.
|
|
|
|
@var{n} must be positive.@*
|
|
|
|
Corresponding string regexp: @samp{\(?@var{n}:@dots{}\)}
|
|
|
|
|
|
|
|
@item (backref @var{n})
|
|
|
|
@cindex @code{backref} in rx
|
|
|
|
Match the text previously matched by group number @var{n}.
|
|
|
|
@var{n} must be in the range 1--9.@*
|
|
|
|
Corresponding string regexp: @samp{\@var{n}}
|
|
|
|
@end table
|
|
|
|
|
|
|
|
@subsubheading Dynamic inclusion
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item (literal @var{expr})
|
|
|
|
@cindex @code{literal} in rx
|
|
|
|
Match the literal string that is the result from evaluating the Lisp
|
|
|
|
expression @var{expr}. The evaluation takes place at call time, in
|
|
|
|
the current lexical environment.
|
|
|
|
|
|
|
|
@item (regexp @var{expr})
|
|
|
|
@cindex @code{regexp} in rx
|
|
|
|
@itemx (regex @var{expr})
|
|
|
|
@cindex @code{regex} in rx
|
|
|
|
Match the string regexp that is the result from evaluating the Lisp
|
|
|
|
expression @var{expr}. The evaluation takes place at call time, in
|
|
|
|
the current lexical environment.
|
|
|
|
|
|
|
|
@item (eval @var{expr})
|
|
|
|
@cindex @code{eval} in rx
|
|
|
|
Match the rx form that is the result from evaluating the Lisp
|
|
|
|
expression @var{expr}. The evaluation takes place at macro-expansion
|
|
|
|
time for @code{rx}, at call time for @code{rx-to-string},
|
|
|
|
in the current global environment.
|
|
|
|
@end table
|
|
|
|
|
|
|
|
@node Rx Functions
|
|
|
|
@subsubsection Functions and macros using @code{rx} regexps
|
|
|
|
|
2021-09-26 14:36:02 +02:00
|
|
|
@defmac rx rx-form@dots{}
|
|
|
|
Translate the @var{rx-form}s to a string regexp, as if they were the
|
2019-07-04 13:01:52 +02:00
|
|
|
body of a @code{(seq @dots{})} form. The @code{rx} macro expands to a
|
|
|
|
string constant, or, if @code{literal} or @code{regexp} forms are
|
2021-09-26 14:36:02 +02:00
|
|
|
used, a Lisp expression that evaluates to a string. Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx (+ alpha) "=" (+ digit))
|
|
|
|
@result{} "[[:alpha:]]+=[[:digit:]]+"
|
|
|
|
@end group
|
|
|
|
@end example
|
2019-07-04 13:01:52 +02:00
|
|
|
@end defmac
|
|
|
|
|
|
|
|
@defun rx-to-string rx-expr &optional no-group
|
|
|
|
Translate @var{rx-expr} to a string regexp which is returned.
|
Fix some Texinfo markup in manuals
* doc/emacs/macos.texi (Mac / GNUstep Customization):
* doc/lispintro/emacs-lisp-intro.texi (condition-case):
* doc/lispref/control.texi (pcase Macro):
* doc/lispref/debugging.texi (Internals of Debugger):
* doc/lispref/internals.texi (Building Emacs):
* doc/lispref/modes.texi (Imenu):
(Parser-based Font Lock, Parser-based Indentation):
* doc/lispref/parsing.texi (Retrieving Nodes, Tree-sitter C API):
* doc/lispref/processes.texi (Network, Bindat Types):
* doc/lispref/searching.texi (Rx Functions):
* doc/lispref/text.texi (Replacing):
* doc/lispref/windows.texi (Textual Scrolling):
* doc/misc/calc.texi (Killing From Stack, Customizing Calc):
* doc/misc/cc-mode.texi (Misc Font Locking, List Line-Up):
* doc/misc/ede.texi (ede-cpp-root-project)
(ede-proj-target-makefile, ede-sourcecode):
* doc/misc/ert.texi (Running Tests in Batch Mode):
* doc/misc/eudc.texi (Emacs-only Configuration, The Server Hotlist):
* doc/misc/eww.texi (Advanced):
* doc/misc/flymake.texi (Starting Flymake)
(Proc customization variables):
* doc/misc/tramp.texi (File name completion):
* doc/misc/gnus.texi (Summary Buffer Lines, Gnus Registry Setup)
(Fancy splitting to parent, Customizing the IMAP Connection)
(Mail Source Specifiers, Agent as Cache): Consistently mark up nil
and t as @code. Also fix the markup and wording of some surrounding
text (bug#64016).
* doc/lispref/display.texi (SVG Images, Icons):
* doc/lispref/modes.texi (Customizing Keywords): Prefer ASCII
apostrophe over Unicode right single quotation mark.
2023-06-12 14:42:31 +01:00
|
|
|
If @var{no-group} is absent or @code{nil}, bracket the result in a
|
2019-07-04 13:01:52 +02:00
|
|
|
non-capturing group, @samp{\(?:@dots{}\)}, if necessary to ensure that
|
|
|
|
a postfix operator appended to it will apply to the whole expression.
|
2021-09-26 14:36:02 +02:00
|
|
|
Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx-to-string '(seq (+ alpha) "=" (+ digit)) t)
|
|
|
|
@result{} "[[:alpha:]]+=[[:digit:]]+"
|
|
|
|
@end group
|
|
|
|
@end example
|
2019-07-04 13:01:52 +02:00
|
|
|
|
|
|
|
Arguments to @code{literal} and @code{regexp} forms in @var{rx-expr}
|
|
|
|
must be string literals.
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
The @code{pcase} macro can use @code{rx} expressions as patterns
|
|
|
|
directly; @pxref{rx in pcase}.
|
Add rx extension mechanism
Add a built-in set of extension macros: `rx-define', `rx-let' and
`rx-let-eval'.
* lisp/emacs-lisp/rx.el (rx-constituents, rx-to-string): Doc updates.
(rx--builtin-symbols, rx--builtin-names, rx--local-definitions)
(rx--lookup-def, rx--substitute, rx--expand-template)
(rx--make-binding, rx--make-named-binding, rx--extend-local-defs)
(rx-let-eval, rx-let, rx-define): New.
(rx--translate-symbol, rx--translate-form): Use extensions if any.
(rx): Use local definitions.
* test/lisp/emacs-lisp/rx-tests.el (rx-let, rx-define)
(rx-to-string-define, rx-let-define, rx-let-eval): New.
* etc/NEWS (Changes in Specialized Modes and Packages):
* doc/lispref/searching.texi (Rx Notation, Rx Functions, Extending Rx):
Add node about rx extensions.
2019-09-25 14:29:50 -07:00
|
|
|
|
|
|
|
For mechanisms to add user-defined extensions to the @code{rx}
|
|
|
|
notation, @pxref{Extending Rx}.
|
|
|
|
|
|
|
|
@node Extending Rx
|
|
|
|
@subsubsection Defining new @code{rx} forms
|
|
|
|
|
|
|
|
The @code{rx} notation can be extended by defining new symbols and
|
2019-12-10 20:04:36 -08:00
|
|
|
parameterized forms in terms of other @code{rx} expressions. This is
|
Add rx extension mechanism
Add a built-in set of extension macros: `rx-define', `rx-let' and
`rx-let-eval'.
* lisp/emacs-lisp/rx.el (rx-constituents, rx-to-string): Doc updates.
(rx--builtin-symbols, rx--builtin-names, rx--local-definitions)
(rx--lookup-def, rx--substitute, rx--expand-template)
(rx--make-binding, rx--make-named-binding, rx--extend-local-defs)
(rx-let-eval, rx-let, rx-define): New.
(rx--translate-symbol, rx--translate-form): Use extensions if any.
(rx): Use local definitions.
* test/lisp/emacs-lisp/rx-tests.el (rx-let, rx-define)
(rx-to-string-define, rx-let-define, rx-let-eval): New.
* etc/NEWS (Changes in Specialized Modes and Packages):
* doc/lispref/searching.texi (Rx Notation, Rx Functions, Extending Rx):
Add node about rx extensions.
2019-09-25 14:29:50 -07:00
|
|
|
handy for sharing parts between several regexps, and for making
|
|
|
|
complex ones easier to build and understand by putting them together
|
|
|
|
from smaller pieces.
|
|
|
|
|
|
|
|
For example, you could define @code{name} to mean
|
|
|
|
@code{(one-or-more letter)}, and @code{(quoted @var{x})} to mean
|
|
|
|
@code{(seq ?' @var{x} ?')} for any @var{x}. These forms could then be
|
|
|
|
used in @code{rx} expressions like any other: @code{(rx (quoted name))}
|
|
|
|
would match a nonempty sequence of letters inside single quotes.
|
|
|
|
|
|
|
|
The Lisp macros below provide different ways of binding names to
|
|
|
|
definitions. Common to all of them are the following rules:
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
@item
|
|
|
|
Built-in @code{rx} forms, like @code{digit} and @code{group}, cannot
|
|
|
|
be redefined.
|
|
|
|
|
|
|
|
@item
|
|
|
|
The definitions live in a name space of their own, separate from that
|
|
|
|
of Lisp variables. There is thus no need to attach a suffix like
|
|
|
|
@code{-regexp} to names; they cannot collide with anything else.
|
|
|
|
|
|
|
|
@item
|
|
|
|
Definitions cannot refer to themselves recursively, directly or
|
|
|
|
indirectly. If you find yourself needing this, you want a parser, not
|
|
|
|
a regular expression.
|
|
|
|
|
|
|
|
@item
|
|
|
|
Definitions are only ever expanded in calls to @code{rx} or
|
|
|
|
@code{rx-to-string}, not merely by their presence in definition
|
|
|
|
macros. This means that the order of definitions doesn't matter, even
|
|
|
|
when they refer to each other, and that syntax errors only show up
|
|
|
|
when they are used, not when they are defined.
|
|
|
|
|
|
|
|
@item
|
|
|
|
User-defined forms are allowed wherever arbitrary @code{rx}
|
|
|
|
expressions are expected; for example, in the body of a
|
|
|
|
@code{zero-or-one} form, but not inside @code{any} or @code{category}
|
2019-12-12 23:04:00 +01:00
|
|
|
forms. They are also allowed inside @code{not} and
|
|
|
|
@code{intersection} forms.
|
Add rx extension mechanism
Add a built-in set of extension macros: `rx-define', `rx-let' and
`rx-let-eval'.
* lisp/emacs-lisp/rx.el (rx-constituents, rx-to-string): Doc updates.
(rx--builtin-symbols, rx--builtin-names, rx--local-definitions)
(rx--lookup-def, rx--substitute, rx--expand-template)
(rx--make-binding, rx--make-named-binding, rx--extend-local-defs)
(rx-let-eval, rx-let, rx-define): New.
(rx--translate-symbol, rx--translate-form): Use extensions if any.
(rx): Use local definitions.
* test/lisp/emacs-lisp/rx-tests.el (rx-let, rx-define)
(rx-to-string-define, rx-let-define, rx-let-eval): New.
* etc/NEWS (Changes in Specialized Modes and Packages):
* doc/lispref/searching.texi (Rx Notation, Rx Functions, Extending Rx):
Add node about rx extensions.
2019-09-25 14:29:50 -07:00
|
|
|
@end itemize
|
|
|
|
|
|
|
|
@defmac rx-define name [arglist] rx-form
|
|
|
|
Define @var{name} globally in all subsequent calls to @code{rx} and
|
|
|
|
@code{rx-to-string}. If @var{arglist} is absent, then @var{name} is
|
|
|
|
defined as a plain symbol to be replaced with @var{rx-form}. Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx-define haskell-comment (seq "--" (zero-or-more nonl)))
|
|
|
|
(rx haskell-comment)
|
|
|
|
@result{} "--.*"
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
If @var{arglist} is present, it must be a list of zero or more
|
2019-12-10 20:04:36 -08:00
|
|
|
argument names, and @var{name} is then defined as a parameterized form.
|
Add rx extension mechanism
Add a built-in set of extension macros: `rx-define', `rx-let' and
`rx-let-eval'.
* lisp/emacs-lisp/rx.el (rx-constituents, rx-to-string): Doc updates.
(rx--builtin-symbols, rx--builtin-names, rx--local-definitions)
(rx--lookup-def, rx--substitute, rx--expand-template)
(rx--make-binding, rx--make-named-binding, rx--extend-local-defs)
(rx-let-eval, rx-let, rx-define): New.
(rx--translate-symbol, rx--translate-form): Use extensions if any.
(rx): Use local definitions.
* test/lisp/emacs-lisp/rx-tests.el (rx-let, rx-define)
(rx-to-string-define, rx-let-define, rx-let-eval): New.
* etc/NEWS (Changes in Specialized Modes and Packages):
* doc/lispref/searching.texi (Rx Notation, Rx Functions, Extending Rx):
Add node about rx extensions.
2019-09-25 14:29:50 -07:00
|
|
|
When used in an @code{rx} expression as @code{(@var{name} @var{arg}@dots{})},
|
|
|
|
each @var{arg} will replace the corresponding argument name inside
|
|
|
|
@var{rx-form}.
|
|
|
|
|
|
|
|
@var{arglist} may end in @code{&rest} and one final argument name,
|
|
|
|
denoting a rest parameter. The rest parameter will expand to all
|
|
|
|
extra actual argument values not matched by any other parameter in
|
|
|
|
@var{arglist}, spliced into @var{rx-form} where it occurs. Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx-define moan (x y &rest r) (seq x (one-or-more y) r "!"))
|
|
|
|
(rx (moan "MOO" "A" "MEE" "OW"))
|
|
|
|
@result{} "MOOA+MEEOW!"
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
Since the definition is global, it is recommended to give @var{name} a
|
|
|
|
package prefix to avoid name clashes with definitions elsewhere, as is
|
|
|
|
usual when naming non-local variables and functions.
|
2021-08-23 17:02:51 +02:00
|
|
|
|
|
|
|
Forms defined this way only perform simple template substitution.
|
2021-09-24 14:18:57 +02:00
|
|
|
For arbitrary computations, use them together with the @code{rx}
|
2021-08-23 17:02:51 +02:00
|
|
|
forms @code{eval}, @code{regexp} or @code{literal}. Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(defun n-tuple-rx (n element)
|
|
|
|
`(seq "<"
|
|
|
|
(group-n 1 ,element)
|
|
|
|
,@@(mapcar (lambda (i) `(seq ?, (group-n ,i ,element)))
|
|
|
|
(number-sequence 2 n))
|
|
|
|
">"))
|
|
|
|
(rx-define n-tuple (n element) (eval (n-tuple-rx n 'element)))
|
|
|
|
(rx (n-tuple 3 (+ (in "0-9"))))
|
|
|
|
@result{} "<\\(?1:[0-9]+\\),\\(?2:[0-9]+\\),\\(?3:[0-9]+\\)>"
|
|
|
|
@end group
|
|
|
|
@end example
|
Add rx extension mechanism
Add a built-in set of extension macros: `rx-define', `rx-let' and
`rx-let-eval'.
* lisp/emacs-lisp/rx.el (rx-constituents, rx-to-string): Doc updates.
(rx--builtin-symbols, rx--builtin-names, rx--local-definitions)
(rx--lookup-def, rx--substitute, rx--expand-template)
(rx--make-binding, rx--make-named-binding, rx--extend-local-defs)
(rx-let-eval, rx-let, rx-define): New.
(rx--translate-symbol, rx--translate-form): Use extensions if any.
(rx): Use local definitions.
* test/lisp/emacs-lisp/rx-tests.el (rx-let, rx-define)
(rx-to-string-define, rx-let-define, rx-let-eval): New.
* etc/NEWS (Changes in Specialized Modes and Packages):
* doc/lispref/searching.texi (Rx Notation, Rx Functions, Extending Rx):
Add node about rx extensions.
2019-09-25 14:29:50 -07:00
|
|
|
@end defmac
|
|
|
|
|
|
|
|
@defmac rx-let (bindings@dots{}) body@dots{}
|
|
|
|
Make the @code{rx} definitions in @var{bindings} available locally for
|
|
|
|
@code{rx} macro invocations in @var{body}, which is then evaluated.
|
|
|
|
|
|
|
|
Each element of @var{bindings} is on the form
|
|
|
|
@w{@code{(@var{name} [@var{arglist}] @var{rx-form})}}, where the parts
|
|
|
|
have the same meaning as in @code{rx-define} above. Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx-let ((comma-separated (item) (seq item (0+ "," item)))
|
|
|
|
(number (1+ digit))
|
|
|
|
(numbers (comma-separated number)))
|
|
|
|
(re-search-forward (rx "(" numbers ")")))
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
The definitions are only available during the macro-expansion of
|
|
|
|
@var{body}, and are thus not present during execution of compiled
|
|
|
|
code.
|
|
|
|
|
|
|
|
@code{rx-let} can be used not only inside a function, but also at top
|
|
|
|
level to include global variable and function definitions that need
|
|
|
|
to share a common set of @code{rx} forms. Since the names are local
|
|
|
|
inside @var{body}, there is no need for any package prefixes.
|
|
|
|
Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx-let ((phone-number (seq (opt ?+) (1+ (any digit ?-)))))
|
|
|
|
(defun find-next-phone-number ()
|
|
|
|
(re-search-forward (rx phone-number)))
|
|
|
|
(defun phone-number-p (string)
|
|
|
|
(string-match-p (rx bos phone-number eos) string)))
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
The scope of the @code{rx-let} bindings is lexical, which means that
|
|
|
|
they are not visible outside @var{body} itself, even in functions
|
|
|
|
called from @var{body}.
|
|
|
|
@end defmac
|
|
|
|
|
|
|
|
@defmac rx-let-eval bindings body@dots{}
|
|
|
|
Evaluate @var{bindings} to a list of bindings as in @code{rx-let},
|
|
|
|
and evaluate @var{body} with those bindings in effect for calls
|
|
|
|
to @code{rx-to-string}.
|
|
|
|
|
|
|
|
This macro is similar to @code{rx-let}, except that the @var{bindings}
|
|
|
|
argument is evaluated (and thus needs to be quoted if it is a list
|
|
|
|
literal), and the definitions are substituted at run time, which is
|
|
|
|
required for @code{rx-to-string} to work. Example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(rx-let-eval
|
|
|
|
'((ponder (x) (seq "Where have all the " x " gone?")))
|
|
|
|
(looking-at (rx-to-string
|
|
|
|
'(ponder (or "flowers" "young girls"
|
|
|
|
"left socks")))))
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
Another difference from @code{rx-let} is that the @var{bindings} are
|
|
|
|
dynamically scoped, and thus also available in functions called from
|
2024-07-21 16:33:08 +02:00
|
|
|
@var{body}. However, they are not visible inside functions defined in
|
Add rx extension mechanism
Add a built-in set of extension macros: `rx-define', `rx-let' and
`rx-let-eval'.
* lisp/emacs-lisp/rx.el (rx-constituents, rx-to-string): Doc updates.
(rx--builtin-symbols, rx--builtin-names, rx--local-definitions)
(rx--lookup-def, rx--substitute, rx--expand-template)
(rx--make-binding, rx--make-named-binding, rx--extend-local-defs)
(rx-let-eval, rx-let, rx-define): New.
(rx--translate-symbol, rx--translate-form): Use extensions if any.
(rx): Use local definitions.
* test/lisp/emacs-lisp/rx-tests.el (rx-let, rx-define)
(rx-to-string-define, rx-let-define, rx-let-eval): New.
* etc/NEWS (Changes in Specialized Modes and Packages):
* doc/lispref/searching.texi (Rx Notation, Rx Functions, Extending Rx):
Add node about rx extensions.
2019-09-25 14:29:50 -07:00
|
|
|
@var{body}.
|
|
|
|
@end defmac
|
|
|
|
|
2019-07-04 13:01:52 +02:00
|
|
|
@end ifnottex
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Regexp Functions
|
|
|
|
@subsection Regular Expression Functions
|
|
|
|
|
|
|
|
These functions operate on regular expressions.
|
|
|
|
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
@cindex quote special characters in regexp
|
2007-09-06 04:25:08 +00:00
|
|
|
@defun regexp-quote string
|
|
|
|
This function returns a regular expression whose only exact match is
|
|
|
|
@var{string}. Using this regular expression in @code{looking-at} will
|
|
|
|
succeed only if the next characters in the buffer are @var{string};
|
|
|
|
using it in a search function will succeed if the text being searched
|
2012-03-28 12:30:12 -07:00
|
|
|
contains @var{string}. @xref{Regexp Search}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
This allows you to request an exact string match or search when calling
|
|
|
|
a function that wants a regular expression.
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(regexp-quote "^The cat$")
|
|
|
|
@result{} "\\^The cat\\$"
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
One use of @code{regexp-quote} is to combine an exact string match with
|
|
|
|
context described as a regular expression. For example, this searches
|
|
|
|
for the string that is the value of @var{string}, surrounded by
|
|
|
|
whitespace:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(re-search-forward
|
|
|
|
(concat "\\s-" (regexp-quote string) "\\s-"))
|
|
|
|
@end group
|
|
|
|
@end example
|
2019-09-23 18:56:30 +02:00
|
|
|
|
|
|
|
The returned string may be @var{string} itself if it does not contain
|
|
|
|
any special characters.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defun
|
|
|
|
|
Improve indexing on the chapter/section/subsection levels.
doc/lispref/windows.texi (Recombining Windows): Index subject of sections.
doc/lispref/variables.texi (Variables with Restricted Values)
(Generalized Variables): Index subject of sections.
doc/lispref/text.texi (Buffer Contents, Examining Properties)
(Changing Properties, Property Search, Substitution): Index
subject of sections.
doc/lispref/syntax.texi (Motion and Syntax, Parsing Expressions)
(Motion via Parsing, Position Parse, Control Parsing): Index
subject of sections.
doc/lispref/strings.texi (Predicates for Strings, Creating Strings)
(Modifying Strings, Text Comparison): Index subject of sections.
doc/lispref/searching.texi (Syntax of Regexps, Regexp Special)
(Regexp Functions, Regexp Functions): Index subject of sections.
doc/lispref/processes.texi (Subprocess Creation, Process Information): Index
subject of sections.
doc/lispref/positions.texi (Screen Lines): Index subject of sections.
doc/lispref/nonascii.texi (Scanning Charsets, Specifying Coding Systems):
Index subject of sections.
doc/lispref/minibuf.texi (Text from Minibuffer, Object from Minibuffer)
(Multiple Queries, Minibuffer Contents): Index subject of
sections.
doc/lispref/markers.texi (Predicates on Markers, Creating Markers)
(Information from Markers, Moving Markers): Index subject of
sections.
doc/lispref/macros.texi (Defining Macros, Problems with Macros): Index
subject of sections.
doc/lispref/loading.texi (Loading Non-ASCII, Where Defined): Index subject
of sections.
doc/lispref/lists.texi (List-related Predicates, List Variables, Setcar)
(Setcdr, Plist Access): Index subject of sections.
doc/lispref/keymaps.texi (Controlling Active Maps, Scanning Keymaps)
(Modifying Menus): Index subject of sections.
doc/lispref/help.texi (Accessing Documentation, Help Functions): Index
subject of sections.
doc/lispref/hash.texi (Hash Access): Index subject of sections.
doc/lispref/functions.texi (Core Advising Primitives)
(Advising Named Functions, Porting old advices): Index subject of
sections.
doc/lispref/frames.texi (Creating Frames, Initial Parameters)
(Position Parameters, Buffer Parameters, Minibuffers and Frames)
(Pop-Up Menus, Drag and Drop): Index subject of sections.
doc/lispref/files.texi (Visiting Functions, Kinds of Files)
(Unique File Names): Index subject of sections.
doc/lispref/display.texi (Refresh Screen, Echo Area Customization)
(Warning Variables, Warning Options, Delayed Warnings)
(Temporary Displays, Managing Overlays, Overlay Properties)
(Finding Overlays, Size of Displayed Text, Defining Faces)
(Attribute Functions, Displaying Faces, Face Remapping)
(Basic Faces, Font Lookup, Fontsets, Replacing Specs)
(Defining Images, Showing Images): Index subject of sections.
doc/lispref/debugging.texi (Debugging, Explicit Debug)
(Invoking the Debugger, Excess Open, Excess Close): Index subject
of sections.
doc/lispref/customize.texi (Defining New Types, Applying Customizations)
(Custom Themes): Index subject of sections.
doc/lispref/control.texi (Sequencing, Combining Conditions)
(Processing of Errors, Cleanups): Index subject of sections.
doc/lispref/compile.texi (Eval During Compile): Index subject of sections.
doc/lispref/commands.texi (Using Interactive, Distinguish Interactive)
(Command Loop Info, Classifying Events, Event Mod)
(Invoking the Input Method): Index subject of sections.
doc/lispref/buffers.texi (Buffer List, Buffer Gap): Index subject of sections.
doc/lispref/backups.texi (Making Backups, Numbered Backups, Backup Names)
(Reverting): Index subject of sections.
doc/lispref/abbrevs.texi (Abbrev Tables, Defining Abbrevs, Abbrev Files)
(Abbrev Expansion, Standard Abbrev Tables, Abbrev Properties)
(Abbrev Table Properties): Index subject of sections.
doc/lispref/os.texi (Time of Day, Time Conversion, Time Parsing)
(Time Calculations, Idle Timers): Index subject of sections.
2014-12-23 20:42:30 +02:00
|
|
|
@cindex optimize regexp
|
2020-02-13 20:06:48 +01:00
|
|
|
@defun regexp-opt strings &optional paren
|
2007-09-06 04:25:08 +00:00
|
|
|
This function returns an efficient regular expression that will match
|
|
|
|
any of the strings in the list @var{strings}. This is useful when you
|
|
|
|
need to make matching or searching as fast as possible---for example,
|
2012-03-28 12:30:12 -07:00
|
|
|
for Font Lock mode@footnote{Note that @code{regexp-opt} does not
|
|
|
|
guarantee that its result is absolutely the most efficient form
|
|
|
|
possible. A hand-tuned regular expression can sometimes be slightly
|
|
|
|
more efficient, but is almost never worth the effort.}.
|
2017-09-13 15:52:52 -07:00
|
|
|
@c E.g., see https://debbugs.gnu.org/2816
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2019-02-25 15:22:02 +01:00
|
|
|
If @var{strings} is the empty list, the return value is a regexp that
|
|
|
|
never matches anything.
|
|
|
|
|
2016-02-07 12:46:37 +03:00
|
|
|
The optional argument @var{paren} can be any of the following:
|
|
|
|
|
2016-09-26 17:00:03 -07:00
|
|
|
@table @asis
|
|
|
|
@item a string
|
|
|
|
The resulting regexp is preceded by @var{paren} and followed by
|
Avoid double spaces around abbrevations in Texinfo
* doc/emacs/custom.texi (Init Rebinding):
* doc/emacs/dired.texi (Operating on Files):
* doc/emacs/emacs.texi (Top):
* doc/emacs/emerge-xtra.texi (Emerge):
* doc/emacs/files.texi (Files):
* doc/emacs/frames.texi (Drag and Drop):
* doc/emacs/misc.texi (Hyperlinking):
* doc/emacs/modes.texi (Modes):
* doc/emacs/mule.texi (Input Methods):
* doc/emacs/windows.texi (Window Tool Bar):
* doc/lispintro/emacs-lisp-intro.texi
(Lexical & Dynamic Binding Differences):
* doc/lispref/elisp.texi (Top):
* doc/lispref/functions.texi (Functions, Generic Functions):
* doc/lispref/hash.texi (Defining Hash):
* doc/lispref/keymaps.texi (Creating Keymaps):
* doc/lispref/lists.texi (Property Lists):
* doc/lispref/modes.texi (%-Constructs):
* doc/lispref/nonascii.texi (Character Properties):
* doc/lispref/processes.texi (Misc Network):
* doc/lispref/searching.texi (Regexp Functions):
* doc/lispref/syntax.texi (Syntax Table Internals):
* doc/lispref/text.texi (Filling, Checksum/Hash)
(JSONRPC deferred requests):
* doc/misc/calc.texi (What is Calc, Modes Tutorial):
* doc/misc/cc-mode.texi (List Line-Up, Operator Line-Up)
(Custom Macros, Indenting Directives):
* doc/misc/efaq.texi (Colors on a TTY, Security risks with Emacs):
* doc/misc/eglot.texi (Eglot Variables):
* doc/misc/erc.texi (Connecting):
* doc/misc/eshell.texi (Aliases, Completion):
* doc/misc/flymake.texi (Backend functions):
* doc/misc/gnus-faq.texi (FAQ 5 - Composing messages):
* doc/misc/gnus.texi (Gnus Unplugged, Window Layout)
(Filtering Incoming Mail, History):
* doc/misc/idlwave.texi (Online Help, Catalogs):
* doc/misc/wisent.texi (Wisent Overview): Be more consistent with
abbreviations. Use @: or comma or rewrite to avoid double spaces.
Ref: https://lists.gnu.org/r/emacs-devel/2025-01/msg00909.html
2025-01-24 17:32:17 +01:00
|
|
|
@samp{\)}. For example, use @samp{"\\(?1:"} to produce an explicitly
|
2016-09-26 17:00:03 -07:00
|
|
|
numbered group.
|
|
|
|
|
|
|
|
@item @code{words}
|
|
|
|
The resulting regexp is surrounded by @samp{\<\(} and @samp{\)\>}.
|
|
|
|
|
|
|
|
@item @code{symbols}
|
|
|
|
The resulting regexp is surrounded by @samp{\_<\(} and @samp{\)\_>}
|
|
|
|
(this is often appropriate when matching programming-language
|
|
|
|
keywords and the like).
|
|
|
|
|
|
|
|
@item non-@code{nil}
|
|
|
|
The resulting regexp is surrounded by @samp{\(} and @samp{\)}.
|
|
|
|
|
|
|
|
@item @code{nil}
|
|
|
|
The resulting regexp is surrounded by @samp{\(?:} and @samp{\)},
|
|
|
|
if it is necessary to ensure that a postfix operator appended to
|
|
|
|
it will apply to the whole expression.
|
|
|
|
@end table
|
2016-02-07 12:46:37 +03:00
|
|
|
|
2020-02-13 20:06:48 +01:00
|
|
|
The returned regexp is ordered in such a way that it will always match
|
|
|
|
the longest string possible.
|
2019-02-24 22:12:52 +01:00
|
|
|
|
|
|
|
Up to reordering, the resulting regexp of @code{regexp-opt} is
|
|
|
|
equivalent to but usually more efficient than that of a simplified
|
|
|
|
version:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@example
|
2016-02-07 12:46:37 +03:00
|
|
|
(defun simplified-regexp-opt (strings &optional paren)
|
2016-09-26 17:00:03 -07:00
|
|
|
(let ((parens
|
|
|
|
(cond
|
|
|
|
((stringp paren) (cons paren "\\)"))
|
|
|
|
((eq paren 'words) '("\\<\\(" . "\\)\\>"))
|
|
|
|
((eq paren 'symbols) '("\\_<\\(" . "\\)\\_>"))
|
|
|
|
((null paren) '("\\(?:" . "\\)"))
|
|
|
|
(t '("\\(" . "\\)")))))
|
2019-03-31 15:53:52 +02:00
|
|
|
(concat (car parens)
|
2016-02-07 12:46:37 +03:00
|
|
|
(mapconcat 'regexp-quote strings "\\|")
|
2019-03-31 15:53:52 +02:00
|
|
|
(cdr parens))))
|
2007-09-06 04:25:08 +00:00
|
|
|
@end example
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@defun regexp-opt-depth regexp
|
|
|
|
This function returns the total number of grouping constructs
|
2009-04-15 21:54:15 +00:00
|
|
|
(parenthesized expressions) in @var{regexp}. This does not include
|
|
|
|
shy groups (@pxref{Regexp Backslash}).
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defun
|
|
|
|
|
2012-03-28 12:30:12 -07:00
|
|
|
@c Supposedly an internal regexp-opt function, but table.el uses it at least.
|
|
|
|
@defun regexp-opt-charset chars
|
|
|
|
This function returns a regular expression matching a character in the
|
|
|
|
list of characters @var{chars}.
|
|
|
|
|
|
|
|
@example
|
|
|
|
(regexp-opt-charset '(?a ?b ?c ?d ?e))
|
|
|
|
@result{} "[a-e]"
|
|
|
|
@end example
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@c Internal functions: regexp-opt-group
|
|
|
|
|
2019-10-07 18:28:18 +02:00
|
|
|
@anchor{regexp-unmatchable}
|
Add standard unmatchable regexp
Add `regexp-unmatchable' as a standard unmatchable regexp, defined as
"\\`a\\`". Use it where such a regexp is needed, replacing slower
expressions in several places.
From a suggestion by Philippe Schnoebelen.
* lisp/subr.el (regexp-unmatchable): New defconst.
* etc/NEWS (Lisp Changes): Mention `regexp-unmatchable'.
* doc/lispref/searching.texi (Regexp Functions): Document it.
* lisp/emacs-lisp/regexp-opt.el (regexp-opt)
* lisp/progmodes/cc-defs.el (cc-conditional-require-after-load)
(c-make-keywords-re)
* lisp/progmodes/cc-engine.el (c-beginning-of-statement-1)
(c-forward-<>-arglist-recur, c-forward-decl-or-cast-1)
(c-looking-at-decl-block)
* lisp/progmodes/cc-fonts.el (c-doc-line-join-re)
(c-doc-bright-comment-start-re)
* lisp/progmodes/cc-langs.el (c-populate-syntax-table)
(c-assignment-op-regexp)
(c-block-comment-ender-regexp, c-font-lock-comment-end-skip)
(c-block-comment-start-regexp, c-line-comment-start-regexp)
(c-doc-comment-start-regexp, c-decl-start-colon-kwd-re)
(c-type-decl-prefix-key, c-type-decl-operator-prefix-key)
(c-pre-id-bracelist-key, c-enum-clause-introduction-re)
(c-nonlabel-token-2-key)
* lisp/progmodes/cc-mode.el (c-doc-fl-decl-start, c-doc-fl-decl-end)
* lisp/progmodes/cc-vars.el (c-noise-macro-with-parens-name-re)
(c-noise-macro-name-re, c-make-noise-macro-regexps)
* lisp/progmodes/octave.el (octave-help-mode)
* lisp/vc/vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-revision-completion-table)
* lisp/vc/vc-git.el (vc-git-log-view-mode)
* lisp/vc/vc-hg.el (vc-hg-log-view-mode)
* lisp/vc/vc-mtn.el (vc-mtn-log-view-mode):
Use `regexp-unmatchable'.
* lisp/textmodes/ispell.el (ispell-non-empty-string):
Use `regexp-unmatchable', fixing a broken never-match regexp.
2019-05-14 11:43:49 +02:00
|
|
|
@defvar regexp-unmatchable
|
|
|
|
This variable contains a regexp that is guaranteed not to match any
|
|
|
|
string at all. It is particularly useful as default value for
|
|
|
|
variables that may be set to a pattern that actually matches
|
|
|
|
something.
|
|
|
|
@end defvar
|
|
|
|
|
2021-11-03 13:42:25 +01:00
|
|
|
@node Regexp Problems
|
|
|
|
@subsection Problems with Regular Expressions
|
|
|
|
@cindex regular expression problems
|
|
|
|
@cindex regexp stack overflow
|
|
|
|
@cindex stack overflow in regexp
|
|
|
|
|
|
|
|
The Emacs regexp implementation, like many of its kind, is generally
|
|
|
|
robust but occasionally causes trouble in either of two ways: matching
|
|
|
|
may run out of internal stack space and signal an error, and it can
|
|
|
|
take a long time to complete. The advice below will make these
|
|
|
|
symptoms less likely and help alleviate problems that do arise.
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
@item
|
|
|
|
Anchor regexps at the beginning of a line, string or buffer using
|
2024-07-21 16:33:08 +02:00
|
|
|
zero-width assertions (@samp{^} and @code{\`}). This takes advantage
|
2021-11-03 13:42:25 +01:00
|
|
|
of fast paths in the implementation and can avoid futile matching
|
|
|
|
attempts. Other zero-width assertions may also bring benefits by
|
|
|
|
causing a match to fail early.
|
|
|
|
|
|
|
|
@item
|
2023-06-19 11:09:00 -07:00
|
|
|
Avoid or-patterns in favor of bracket expressions: write
|
2021-11-03 13:42:25 +01:00
|
|
|
@samp{[ab]} instead of @samp{a\|b}. Recall that @samp{\s-} and @samp{\sw}
|
2023-07-28 11:14:01 +02:00
|
|
|
are equivalent to @samp{[[:space:]]} and @samp{[[:word:]]}, respectively,
|
|
|
|
most of the time.
|
2021-11-03 13:42:25 +01:00
|
|
|
|
|
|
|
@item
|
|
|
|
Since the last branch of an or-pattern does not add a backtrack point
|
|
|
|
on the stack, consider putting the most likely matched pattern last.
|
|
|
|
For example, @samp{^\(?:a\|.b\)*c} will run out of stack if trying to
|
|
|
|
match a very long string of @samp{a}s, but the equivalent
|
|
|
|
@samp{^\(?:.b\|a\)*c} will not.
|
|
|
|
|
|
|
|
(It is a trade-off: successfully matched or-patterns run faster with
|
|
|
|
the most frequently matched pattern first.)
|
|
|
|
|
|
|
|
@item
|
|
|
|
Try to ensure that any part of the text can only match in a single
|
|
|
|
way. For example, @samp{a*a*} will match the same set of strings as
|
|
|
|
@samp{a*}, but the former can do so in many ways and will therefore
|
|
|
|
cause slow backtracking if the match fails later on. Make or-pattern
|
|
|
|
branches mutually exclusive if possible, so that matching will not go
|
|
|
|
far into more than one branch before failing.
|
|
|
|
|
|
|
|
Be especially careful with nested repetitions: they can easily result
|
|
|
|
in very slow matching in the presence of ambiguities. For example,
|
|
|
|
@samp{\(?:a*b*\)+c} will take a long time attempting to match even a
|
|
|
|
moderately long string of @samp{a}s before failing. The equivalent
|
|
|
|
@samp{\(?:a\|b\)*c} is much faster, and @samp{[ab]*c} better still.
|
|
|
|
|
|
|
|
@item
|
|
|
|
Don't use capturing groups unless they are really needed; that is, use
|
|
|
|
@samp{\(?:@dots{}\)} instead of @samp{\(@dots{}\)} for bracketing
|
|
|
|
purposes.
|
|
|
|
|
|
|
|
@ifnottex
|
|
|
|
@item
|
2022-07-13 13:00:31 +02:00
|
|
|
Consider using @code{rx} (@pxref{Rx Notation}); it can optimize some
|
2021-11-03 13:42:25 +01:00
|
|
|
or-patterns automatically and will never introduce capturing groups
|
|
|
|
unless explicitly requested.
|
|
|
|
@end ifnottex
|
|
|
|
@end itemize
|
|
|
|
|
|
|
|
If you run into regexp stack overflow despite following the above
|
|
|
|
advice, don't be afraid of performing the matching in multiple
|
|
|
|
function calls, each using a simpler regexp where backtracking can
|
|
|
|
more easily be contained.
|
|
|
|
|
2023-09-29 14:55:24 -04:00
|
|
|
@defun re--describe-compiled regexp &optional raw
|
|
|
|
To help diagnose problems in your regexps or in the regexp engine
|
|
|
|
itself, this function returns a string describing the compiled
|
|
|
|
form of @var{regexp}. To make sense of it, it can be necessary
|
|
|
|
to read at least the description of the @code{re_opcode_t} type in the
|
2024-07-25 03:35:04 +02:00
|
|
|
@code{src/regex-emacs.c} file in Emacs's source code.
|
2023-09-29 14:55:24 -04:00
|
|
|
|
|
|
|
It is currently able to give a meaningful description only if Emacs
|
2023-10-01 18:42:52 +02:00
|
|
|
was compiled with @code{--enable-checking}.
|
2023-09-29 14:55:24 -04:00
|
|
|
@end defun
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Regexp Search
|
|
|
|
@section Regular Expression Searching
|
|
|
|
@cindex regular expression searching
|
|
|
|
@cindex regexp searching
|
|
|
|
@cindex searching for regexp
|
|
|
|
|
|
|
|
In GNU Emacs, you can search for the next match for a regular
|
2015-01-24 12:09:02 +02:00
|
|
|
expression (@pxref{Syntax of Regexps}) either incrementally or not.
|
|
|
|
For incremental search commands, see @ref{Regexp Search, , Regular
|
|
|
|
Expression Search, emacs, The GNU Emacs Manual}. Here we describe
|
|
|
|
only the search functions useful in programs. The principal one is
|
|
|
|
@code{re-search-forward}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
These search functions convert the regular expression to multibyte if
|
|
|
|
the buffer is multibyte; they convert the regular expression to unibyte
|
|
|
|
if the buffer is unibyte. @xref{Text Representations}.
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command re-search-forward regexp &optional limit noerror count
|
2007-09-06 04:25:08 +00:00
|
|
|
This function searches forward in the current buffer for a string of
|
|
|
|
text that is matched by the regular expression @var{regexp}. The
|
|
|
|
function skips over any amount of text that is not matched by
|
|
|
|
@var{regexp}, and leaves point at the end of the first match found.
|
|
|
|
It returns the new value of point.
|
|
|
|
|
|
|
|
If @var{limit} is non-@code{nil}, it must be a position in the current
|
|
|
|
buffer. It specifies the upper bound to the search. No match
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
extending after that position is accepted. If @var{limit} is omitted
|
|
|
|
or @code{nil}, it defaults to the end of the accessible portion of the
|
|
|
|
buffer.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
What @code{re-search-forward} does when the search fails depends on
|
|
|
|
the value of @var{noerror}:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @code{nil}
|
|
|
|
Signal a @code{search-failed} error.
|
|
|
|
@item @code{t}
|
|
|
|
Do nothing and return @code{nil}.
|
|
|
|
@item anything else
|
|
|
|
Move point to @var{limit} (or the end of the accessible portion of the
|
|
|
|
buffer) and return @code{nil}.
|
|
|
|
@end table
|
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
The argument @var{noerror} only affects valid searches which fail to
|
|
|
|
find a match. Invalid arguments cause errors regardless of
|
|
|
|
@var{noerror}.
|
|
|
|
|
|
|
|
If @var{count} is a positive number @var{n}, the search is done
|
|
|
|
@var{n} times; each successive search starts at the end of the
|
|
|
|
previous match. If all these successive searches succeed, the
|
|
|
|
function call succeeds, moving point and returning its new value.
|
|
|
|
Otherwise the function call fails, with results depending on the value
|
|
|
|
of @var{noerror}, as described above. If @var{count} is a negative
|
2019-06-11 19:55:14 +03:00
|
|
|
number @minus{}@var{n}, the search is done @var{n} times in the opposite
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
(backward) direction.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
In the following example, point is initially before the @samp{T}.
|
|
|
|
Evaluating the search call moves point to the end of that line (between
|
|
|
|
the @samp{t} of @samp{hat} and the newline).
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
I read "@point{}The cat in the hat
|
|
|
|
comes back" twice.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(re-search-forward "[a-z]+" nil t 5)
|
|
|
|
@result{} 27
|
|
|
|
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
I read "The cat in the hat@point{}
|
|
|
|
comes back" twice.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
@end deffn
|
|
|
|
|
2018-05-24 19:49:11 -04:00
|
|
|
@c This anchor is referenced by re-search-backward's docstring.
|
|
|
|
@anchor{re-search-backward}
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command re-search-backward regexp &optional limit noerror count
|
2007-09-06 04:25:08 +00:00
|
|
|
This function searches backward in the current buffer for a string of
|
|
|
|
text that is matched by the regular expression @var{regexp}, leaving
|
|
|
|
point at the beginning of the first text found.
|
|
|
|
|
|
|
|
This function is analogous to @code{re-search-forward}, but they are not
|
|
|
|
simple mirror images. @code{re-search-forward} finds the match whose
|
|
|
|
beginning is as close as possible to the starting point. If
|
|
|
|
@code{re-search-backward} were a perfect mirror image, it would find the
|
|
|
|
match whose end is as close as possible. However, in fact it finds the
|
|
|
|
match whose beginning is as close as possible (and yet ends before the
|
|
|
|
starting point). The reason for this is that matching a regular
|
|
|
|
expression at a given spot always works from beginning to end, and
|
|
|
|
starts at a specified beginning position.
|
|
|
|
|
|
|
|
A true mirror-image of @code{re-search-forward} would require a special
|
|
|
|
feature for matching regular expressions from end to beginning. It's
|
|
|
|
not worth the trouble of implementing that.
|
|
|
|
@end deffn
|
|
|
|
|
2021-10-07 20:46:50 +02:00
|
|
|
@defun string-match regexp string &optional start inhibit-modify
|
2007-09-06 04:25:08 +00:00
|
|
|
This function returns the index of the start of the first match for
|
|
|
|
the regular expression @var{regexp} in @var{string}, or @code{nil} if
|
|
|
|
there is no match. If @var{start} is non-@code{nil}, the search starts
|
|
|
|
at that index in @var{string}.
|
|
|
|
|
|
|
|
For example,
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(string-match
|
|
|
|
"quick" "The quick brown fox jumped quickly.")
|
|
|
|
@result{} 4
|
|
|
|
@end group
|
|
|
|
@group
|
|
|
|
(string-match
|
|
|
|
"quick" "The quick brown fox jumped quickly." 8)
|
|
|
|
@result{} 27
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
The index of the first character of the
|
|
|
|
string is 0, the index of the second character is 1, and so on.
|
|
|
|
|
2021-10-07 20:46:50 +02:00
|
|
|
By default, if this function finds a match, the index of the first
|
|
|
|
character beyond the match is available as @code{(match-end 0)}.
|
|
|
|
@xref{Match Data}. If @var{inhibit-modify} is non-@code{nil}, the
|
|
|
|
match data isn't modified.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(string-match
|
|
|
|
"quick" "The quick brown fox jumped quickly." 8)
|
|
|
|
@result{} 27
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(match-end 0)
|
|
|
|
@result{} 32
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
@end defun
|
|
|
|
|
2008-10-21 14:01:33 +00:00
|
|
|
@defun string-match-p regexp string &optional start
|
2008-10-21 19:55:07 +00:00
|
|
|
This predicate function does what @code{string-match} does, but it
|
|
|
|
avoids modifying the match data.
|
2008-10-21 14:01:33 +00:00
|
|
|
@end defun
|
|
|
|
|
2021-10-07 20:46:50 +02:00
|
|
|
@defun looking-at regexp &optional inhibit-modify
|
2007-09-06 04:25:08 +00:00
|
|
|
This function determines whether the text in the current buffer directly
|
|
|
|
following point matches the regular expression @var{regexp}. ``Directly
|
Restore some of the quoting in the manuals
* doc/lispref/windows.texi (Coordinates and Windows)
(Coordinates and Windows):
* doc/lispref/variables.texi (Lexical Binding)
(File Local Variables):
* doc/lispref/text.texi (Format Properties):
* doc/lispref/symbols.texi (Symbol Components):
* doc/lispref/strings.texi (Creating Strings):
* doc/lispref/sequences.texi (Sequence Functions):
* doc/lispref/searching.texi (Regexp Special, Regexp Search)
(Search and Replace):
* doc/lispref/processes.texi (Bindat Spec):
* doc/lispref/os.texi (Idle Timers):
* doc/lispref/objects.texi (Basic Char Syntax):
* doc/lispref/numbers.texi (Float Basics, Random Numbers):
* doc/lispref/nonascii.texi (Character Properties):
* doc/lispref/modes.texi (Major Mode Conventions, Mode Hooks)
(Mode Line Variables):
* doc/lispref/minibuf.texi (Text from Minibuffer):
* doc/lispref/loading.texi (Autoload):
* doc/lispref/keymaps.texi (Controlling Active Maps):
* doc/lispref/frames.texi (Frame Layout, Size and Position)
(Size Parameters, Implied Frame Resizing):
* doc/lispref/files.texi (Changing Files, Magic File Names):
* doc/lispref/eval.texi (Self-Evaluating Forms):
* doc/lispref/display.texi (Progress, Abstract Display)
(Abstract Display Example, Bidirectional Display):
* doc/lispref/commands.texi (Event Mod):
* doc/emacs/windows.texi (Displaying Buffers):
* doc/emacs/trouble.texi (Bug Criteria, Checklist):
* doc/emacs/text.texi (Enriched Text):
* doc/emacs/programs.texi (MixedCase Words):
* doc/emacs/picture-xtra.texi (Insert in Picture)
(Tabs in Picture):
* doc/emacs/misc.texi (Emacs Server, Printing):
* doc/emacs/mini.texi (Minibuffer History):
* doc/emacs/maintaining.texi (Old Revisions, VC Change Log)
(Pulling / Pushing):
* doc/emacs/killing.texi (Yanking, Cut and Paste, Clipboard):
* doc/emacs/help.texi (Help, Help Echo):
* doc/emacs/glossary.texi (Glossary):
* doc/emacs/frames.texi (Mouse Commands, Creating Frames)
(Frame Commands):
* doc/emacs/files.texi (Reverting, Saving, Directories):
* doc/emacs/entering.texi (Exiting):
* doc/emacs/emacs.texi (Top):
* doc/emacs/cmdargs.texi (Window Size X, Icons X):
* doc/emacs/anti.texi (Antinews): Restore quoting of text where
appropriate or replace quoting with @dfn.
* doc/misc/ediff.texi (Window and Frame Configuration):
* doc/lispref/processes.texi (Network Feature Testing):
* doc/lispref/display.texi (Display Margins): Quote the phrase
after "a.k.a." where appropriate.
2015-09-16 12:56:45 +03:00
|
|
|
following'' means precisely that: the search is ``anchored'' and it can
|
2007-09-06 04:25:08 +00:00
|
|
|
succeed only starting with the first character following point. The
|
|
|
|
result is @code{t} if so, @code{nil} otherwise.
|
|
|
|
|
2021-10-07 20:46:50 +02:00
|
|
|
This function does not move point, but it does update the match data
|
|
|
|
(if @var{inhibit-modify} is @code{nil} or missing, which is the
|
|
|
|
default). @xref{Match Data}. As a convenience, instead of using the
|
|
|
|
@var{inhibit-modify} argument, you can use @code{looking-at-p},
|
|
|
|
described below.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
In this example, point is located directly before the @samp{T}. If it
|
|
|
|
were anywhere else, the result would be @code{nil}.
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
I read "@point{}The cat in the hat
|
|
|
|
comes back" twice.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
|
|
|
|
(looking-at "The cat in the hat$")
|
|
|
|
@result{} t
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
@end defun
|
|
|
|
|
2016-01-13 20:36:11 +02:00
|
|
|
@defun looking-back regexp limit &optional greedy
|
2012-03-28 12:30:12 -07:00
|
|
|
This function returns @code{t} if @var{regexp} matches the text
|
|
|
|
immediately before point (i.e., ending at point), and @code{nil} otherwise.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Because regular expression matching works only going forward, this is
|
|
|
|
implemented by searching backwards from point for a match that ends at
|
|
|
|
point. That can be quite slow if it has to search a long distance.
|
2016-01-13 20:36:11 +02:00
|
|
|
You can bound the time required by specifying a non-@code{nil} value
|
|
|
|
for @var{limit}, which says not to search before @var{limit}. In this
|
|
|
|
case, the match that is found must begin at or after @var{limit}.
|
|
|
|
Here's an example:
|
2008-11-03 19:19:41 +00:00
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@example
|
|
|
|
@group
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
I read "@point{}The cat in the hat
|
|
|
|
comes back" twice.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
|
|
|
|
(looking-back "read \"" 3)
|
|
|
|
@result{} t
|
|
|
|
(looking-back "read \"" 4)
|
|
|
|
@result{} nil
|
|
|
|
@end group
|
|
|
|
@end example
|
2012-03-28 12:30:12 -07:00
|
|
|
|
2013-09-29 14:16:45 +08:00
|
|
|
If @var{greedy} is non-@code{nil}, this function extends the match
|
|
|
|
backwards as far as possible, stopping when a single additional
|
2016-01-13 20:36:11 +02:00
|
|
|
previous character cannot be part of a match for @var{regexp}. When
|
|
|
|
the match is extended, its starting position is allowed to occur
|
|
|
|
before @var{limit}.
|
2013-09-29 14:16:45 +08:00
|
|
|
|
2017-09-13 15:52:52 -07:00
|
|
|
@c https://debbugs.gnu.org/5689
|
2012-03-28 12:30:12 -07:00
|
|
|
As a general recommendation, try to avoid using @code{looking-back}
|
|
|
|
wherever possible, since it is slow. For this reason, there are no
|
|
|
|
plans to add a @code{looking-back-p} function.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defun
|
|
|
|
|
2008-10-21 14:01:33 +00:00
|
|
|
@defun looking-at-p regexp
|
|
|
|
This predicate function works like @code{looking-at}, but without
|
|
|
|
updating the match data.
|
|
|
|
@end defun
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@defvar search-spaces-regexp
|
|
|
|
If this variable is non-@code{nil}, it should be a regular expression
|
|
|
|
that says how to search for whitespace. In that case, any group of
|
|
|
|
spaces in a regular expression being searched for stands for use of
|
|
|
|
this regular expression. However, spaces inside of constructs such as
|
|
|
|
@samp{[@dots{}]} and @samp{*}, @samp{+}, @samp{?} are not affected by
|
|
|
|
@code{search-spaces-regexp}.
|
|
|
|
|
|
|
|
Since this variable affects all regular expression search and match
|
|
|
|
constructs, you should bind it temporarily for as small as possible
|
2024-06-08 21:06:51 +03:00
|
|
|
a part of the code, and only where the Lisp code affected by the
|
|
|
|
binding performs searches whose regexp was produced from interactive
|
|
|
|
user input. In other words, this variable should only be used to tell
|
|
|
|
regexp search primitives how to interpret whitespace typed by the
|
|
|
|
user.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defvar
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
@node Longest Match
|
|
|
|
@section Longest-match searching for regular expression matches
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-03-28 12:30:12 -07:00
|
|
|
@cindex backtracking and POSIX regular expressions
|
2007-09-06 04:25:08 +00:00
|
|
|
The usual regular expression functions do backtracking when necessary
|
|
|
|
to handle the @samp{\|} and repetition constructs, but they continue
|
|
|
|
this only until they find @emph{some} match. Then they succeed and
|
|
|
|
report the first match found.
|
|
|
|
|
|
|
|
This section describes alternative search functions which perform the
|
|
|
|
full backtracking specified by the POSIX standard for regular expression
|
|
|
|
matching. They continue backtracking until they have tried all
|
|
|
|
possibilities and found all matches, so they can report the longest
|
2012-12-05 14:27:56 -08:00
|
|
|
match, as required by POSIX@. This is much slower, so use these
|
2007-09-06 04:25:08 +00:00
|
|
|
functions only when you really need the longest match.
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
Despite their names, the POSIX search and match functions
|
|
|
|
use Emacs regular expressions, not POSIX regular expressions.
|
|
|
|
@xref{POSIX Regexps}. Also, they do not properly support the
|
2008-10-21 14:01:33 +00:00
|
|
|
non-greedy repetition operators (@pxref{Regexp Special, non-greedy}).
|
|
|
|
This is because POSIX backtracking conflicts with the semantics of
|
|
|
|
non-greedy repetition.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command posix-search-forward regexp &optional limit noerror count
|
2007-09-06 04:25:08 +00:00
|
|
|
This is like @code{re-search-forward} except that it performs the full
|
|
|
|
backtracking specified by the POSIX standard for regular expression
|
|
|
|
matching.
|
2009-05-20 02:56:33 +00:00
|
|
|
@end deffn
|
2007-09-06 04:25:08 +00:00
|
|
|
|
Improve documentation of search functions
Make the documentation of the search functions more accurate,
complete, and uniform; in particular, extend the description of
the effect when the 'count' parameter is a negative number to all
of these functions.
* src/search.c (Fsearch_backward, Fsearch_forward)
(Fre_search_backward, Fre_search_forward)
(Fposix_search_backward, Fposix_search_forward):
* lisp/isearch.el (word-search-backward, word-search-forward)
(word-search-backward-lax, word-search-forward-lax): Improve doc
strings as described above.
* doc/lispref/searching.texi (String Search, Regexp Search)
(POSIX Regexps): Use 'count' instead of 'repeat' as the name of
the fourth parameter of the *-search-{forward,backward} functions
and improve documentation as described above.
2016-07-12 22:11:22 +02:00
|
|
|
@deffn Command posix-search-backward regexp &optional limit noerror count
|
2007-09-06 04:25:08 +00:00
|
|
|
This is like @code{re-search-backward} except that it performs the full
|
|
|
|
backtracking specified by the POSIX standard for regular expression
|
|
|
|
matching.
|
2009-05-20 02:56:33 +00:00
|
|
|
@end deffn
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2021-10-07 20:46:50 +02:00
|
|
|
@defun posix-looking-at regexp &optional inhibit-modify
|
2007-09-06 04:25:08 +00:00
|
|
|
This is like @code{looking-at} except that it performs the full
|
|
|
|
backtracking specified by the POSIX standard for regular expression
|
|
|
|
matching.
|
|
|
|
@end defun
|
|
|
|
|
2021-10-07 20:46:50 +02:00
|
|
|
@defun posix-string-match regexp string &optional start inhibit-modify
|
2007-09-06 04:25:08 +00:00
|
|
|
This is like @code{string-match} except that it performs the full
|
|
|
|
backtracking specified by the POSIX standard for regular expression
|
|
|
|
matching.
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@node Match Data
|
|
|
|
@section The Match Data
|
|
|
|
@cindex match data
|
|
|
|
|
|
|
|
Emacs keeps track of the start and end positions of the segments of
|
|
|
|
text found during a search; this is called the @dfn{match data}.
|
|
|
|
Thanks to the match data, you can search for a complex pattern, such
|
|
|
|
as a date in a mail message, and then extract parts of the match under
|
|
|
|
control of the pattern.
|
|
|
|
|
|
|
|
Because the match data normally describe the most recent search only,
|
|
|
|
you must be careful not to do another search inadvertently between the
|
|
|
|
search you wish to refer back to and the use of the match data. If you
|
|
|
|
can't avoid another intervening search, you must save and restore the
|
|
|
|
match data around it, to prevent it from being overwritten.
|
|
|
|
|
2011-07-03 20:44:53 +02:00
|
|
|
Notice that all functions are allowed to overwrite the match data
|
|
|
|
unless they're explicitly documented not to do so. A consequence is
|
2011-11-19 01:18:31 -08:00
|
|
|
that functions that are run implicitly in the background
|
2011-07-03 20:44:53 +02:00
|
|
|
(@pxref{Timers}, and @ref{Idle Timers}) should likely save and restore
|
|
|
|
the match data explicitly.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@menu
|
Untabify doc/lispref/*.texi.
* abbrevs.texi, commands.texi, compile.texi, debugging.texi:
* display.texi, edebug.texi, elisp.texi, eval.texi, files.texi:
* frames.texi, functions.texi, internals.texi, keymaps.texi:
* loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi:
* searching.texi, sequences.texi, strings.texi, syntax.texi:
* text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi:
Untabify Texinfo files.
2010-06-22 20:36:56 -07:00
|
|
|
* Replacing Match:: Replacing a substring that was matched.
|
2007-09-06 04:25:08 +00:00
|
|
|
* Simple Match Data:: Accessing single items of match data,
|
Untabify doc/lispref/*.texi.
* abbrevs.texi, commands.texi, compile.texi, debugging.texi:
* display.texi, edebug.texi, elisp.texi, eval.texi, files.texi:
* frames.texi, functions.texi, internals.texi, keymaps.texi:
* loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi:
* searching.texi, sequences.texi, strings.texi, syntax.texi:
* text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi:
Untabify Texinfo files.
2010-06-22 20:36:56 -07:00
|
|
|
such as where a particular subexpression started.
|
2007-09-06 04:25:08 +00:00
|
|
|
* Entire Match Data:: Accessing the entire match data at once, as a list.
|
|
|
|
* Saving Match Data:: Saving and restoring the match data.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Replacing Match
|
|
|
|
@subsection Replacing the Text that Matched
|
|
|
|
@cindex replace matched text
|
|
|
|
|
|
|
|
This function replaces all or part of the text matched by the last
|
|
|
|
search. It works by means of the match data.
|
|
|
|
|
|
|
|
@cindex case in replacements
|
|
|
|
@defun replace-match replacement &optional fixedcase literal string subexp
|
2012-09-22 23:24:26 +08:00
|
|
|
This function performs a replacement operation on a buffer or string.
|
|
|
|
|
|
|
|
If you did the last search in a buffer, you should omit the
|
|
|
|
@var{string} argument or specify @code{nil} for it, and make sure that
|
|
|
|
the current buffer is the one in which you performed the last search.
|
|
|
|
Then this function edits the buffer, replacing the matched text with
|
|
|
|
@var{replacement}. It leaves point at the end of the replacement
|
2014-03-05 21:10:33 -05:00
|
|
|
text.
|
2012-09-22 23:24:26 +08:00
|
|
|
|
|
|
|
If you performed the last search on a string, pass the same string as
|
|
|
|
@var{string}. Then this function returns a new string, in which the
|
|
|
|
matched text is replaced by @var{replacement}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
If @var{fixedcase} is non-@code{nil}, then @code{replace-match} uses
|
|
|
|
the replacement text without case conversion; otherwise, it converts
|
|
|
|
the replacement text depending upon the capitalization of the text to
|
|
|
|
be replaced. If the original text is all upper case, this converts
|
|
|
|
the replacement text to upper case. If all words of the original text
|
|
|
|
are capitalized, this capitalizes all the words of the replacement
|
|
|
|
text. If all the words are one-letter and they are all upper case,
|
|
|
|
they are treated as capitalized words rather than all-upper-case
|
|
|
|
words.
|
|
|
|
|
|
|
|
If @var{literal} is non-@code{nil}, then @var{replacement} is inserted
|
|
|
|
exactly as it is, the only alterations being case changes as needed.
|
|
|
|
If it is @code{nil} (the default), then the character @samp{\} is treated
|
|
|
|
specially. If a @samp{\} appears in @var{replacement}, then it must be
|
|
|
|
part of one of the following sequences:
|
|
|
|
|
|
|
|
@table @asis
|
|
|
|
@item @samp{\&}
|
|
|
|
@cindex @samp{&} in replacement
|
2012-11-07 23:46:35 +08:00
|
|
|
This stands for the entire text being replaced.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-11-07 23:46:35 +08:00
|
|
|
@item @samp{\@var{n}}, where @var{n} is a digit
|
2007-09-06 04:25:08 +00:00
|
|
|
@cindex @samp{\@var{n}} in replacement
|
2012-11-07 23:46:35 +08:00
|
|
|
This stands for the text that matched the @var{n}th subexpression in
|
|
|
|
the original regexp. Subexpressions are those expressions grouped
|
|
|
|
inside @samp{\(@dots{}\)}. If the @var{n}th subexpression never
|
|
|
|
matched, an empty string is substituted.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item @samp{\\}
|
|
|
|
@cindex @samp{\} in replacement
|
2012-11-07 23:46:35 +08:00
|
|
|
This stands for a single @samp{\} in the replacement text.
|
|
|
|
|
|
|
|
@item @samp{\?}
|
|
|
|
This stands for itself (for compatibility with @code{replace-regexp}
|
2013-01-02 18:15:57 -08:00
|
|
|
and related commands; @pxref{Regexp Replace,,, emacs, The GNU
|
2012-11-07 23:46:35 +08:00
|
|
|
Emacs Manual}).
|
2007-09-06 04:25:08 +00:00
|
|
|
@end table
|
|
|
|
|
2012-11-07 23:46:35 +08:00
|
|
|
@noindent
|
|
|
|
Any other character following @samp{\} signals an error.
|
|
|
|
|
|
|
|
The substitutions performed by @samp{\&} and @samp{\@var{n}} occur
|
|
|
|
after case conversion, if any. Therefore, the strings they substitute
|
|
|
|
are never case-converted.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
If @var{subexp} is non-@code{nil}, that says to replace just
|
|
|
|
subexpression number @var{subexp} of the regexp that was matched, not
|
|
|
|
the entire match. For example, after matching @samp{foo \(ba*r\)},
|
|
|
|
calling @code{replace-match} with 1 as @var{subexp} means to replace
|
|
|
|
just the text that matched @samp{\(ba*r\)}.
|
|
|
|
@end defun
|
|
|
|
|
2007-11-10 21:50:49 +00:00
|
|
|
@defun match-substitute-replacement replacement &optional fixedcase literal string subexp
|
|
|
|
This function returns the text that would be inserted into the buffer
|
|
|
|
by @code{replace-match}, but without modifying the buffer. It is
|
|
|
|
useful if you want to present the user with actual replacement result,
|
|
|
|
with constructs like @samp{\@var{n}} or @samp{\&} substituted with
|
|
|
|
matched groups. Arguments @var{replacement} and optional
|
|
|
|
@var{fixedcase}, @var{literal}, @var{string} and @var{subexp} have the
|
|
|
|
same meaning as for @code{replace-match}.
|
|
|
|
@end defun
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Simple Match Data
|
|
|
|
@subsection Simple Match Data Access
|
|
|
|
|
|
|
|
This section explains how to use the match data to find out what was
|
|
|
|
matched by the last search or match operation, if it succeeded.
|
|
|
|
|
|
|
|
You can ask about the entire matching text, or about a particular
|
|
|
|
parenthetical subexpression of a regular expression. The @var{count}
|
|
|
|
argument in the functions below specifies which. If @var{count} is
|
|
|
|
zero, you are asking about the entire match. If @var{count} is
|
|
|
|
positive, it specifies which subexpression you want.
|
|
|
|
|
|
|
|
Recall that the subexpressions of a regular expression are those
|
|
|
|
expressions grouped with escaped parentheses, @samp{\(@dots{}\)}. The
|
|
|
|
@var{count}th subexpression is found by counting occurrences of
|
|
|
|
@samp{\(} from the beginning of the whole regular expression. The first
|
|
|
|
subexpression is numbered 1, the second 2, and so on. Only regular
|
|
|
|
expressions can have subexpressions---after a simple string search, the
|
|
|
|
only information available is about the entire match.
|
|
|
|
|
|
|
|
Every successful search sets the match data. Therefore, you should
|
|
|
|
query the match data immediately after searching, before calling any
|
|
|
|
other function that might perform another search. Alternatively, you
|
|
|
|
may save and restore the match data (@pxref{Saving Match Data}) around
|
2012-03-28 12:30:12 -07:00
|
|
|
the call to functions that could perform another search. Or use the
|
|
|
|
functions that explicitly do not modify the match data;
|
2012-12-05 14:27:56 -08:00
|
|
|
e.g., @code{string-match-p}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-03-28 12:30:12 -07:00
|
|
|
@c This is an old comment and presumably there is no prospect of this
|
|
|
|
@c changing now. But still the advice stands.
|
2007-09-06 04:25:08 +00:00
|
|
|
A search which fails may or may not alter the match data. In the
|
2012-03-28 12:30:12 -07:00
|
|
|
current implementation, it does not, but we may change it in the
|
|
|
|
future. Don't try to rely on the value of the match data after a
|
|
|
|
failing search.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@defun match-string count &optional in-string
|
|
|
|
This function returns, as a string, the text matched in the last search
|
|
|
|
or match operation. It returns the entire text if @var{count} is zero,
|
|
|
|
or just the portion corresponding to the @var{count}th parenthetical
|
|
|
|
subexpression, if @var{count} is positive.
|
|
|
|
|
|
|
|
If the last such operation was done against a string with
|
|
|
|
@code{string-match}, then you should pass the same string as the
|
|
|
|
argument @var{in-string}. After a buffer search or match,
|
|
|
|
you should omit @var{in-string} or pass @code{nil} for it; but you
|
|
|
|
should make sure that the current buffer when you call
|
|
|
|
@code{match-string} is the one in which you did the searching or
|
2012-03-28 12:30:12 -07:00
|
|
|
matching. Failure to follow this advice will lead to incorrect results.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
The value is @code{nil} if @var{count} is out of range, or for a
|
|
|
|
subexpression inside a @samp{\|} alternative that wasn't used or a
|
|
|
|
repetition that repeated zero times.
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@defun match-string-no-properties count &optional in-string
|
|
|
|
This function is like @code{match-string} except that the result
|
|
|
|
has no text properties.
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@defun match-beginning count
|
2015-08-17 23:46:38 -07:00
|
|
|
If the last regular expression search found a match, this function
|
|
|
|
returns the position of the start of the matching text or of a
|
|
|
|
subexpression of it.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
If @var{count} is zero, then the value is the position of the start of
|
|
|
|
the entire match. Otherwise, @var{count} specifies a subexpression in
|
|
|
|
the regular expression, and the value of the function is the starting
|
|
|
|
position of the match for that subexpression.
|
|
|
|
|
|
|
|
The value is @code{nil} for a subexpression inside a @samp{\|}
|
|
|
|
alternative that wasn't used or a repetition that repeated zero times.
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@defun match-end count
|
|
|
|
This function is like @code{match-beginning} except that it returns the
|
|
|
|
position of the end of the match, rather than the position of the
|
|
|
|
beginning.
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
Here is an example of using the match data, with a comment showing the
|
|
|
|
positions within the text:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(string-match "\\(qu\\)\\(ick\\)"
|
|
|
|
"The quick fox jumped quickly.")
|
|
|
|
;0123456789
|
|
|
|
@result{} 4
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(match-string 0 "The quick fox jumped quickly.")
|
|
|
|
@result{} "quick"
|
|
|
|
(match-string 1 "The quick fox jumped quickly.")
|
|
|
|
@result{} "qu"
|
|
|
|
(match-string 2 "The quick fox jumped quickly.")
|
|
|
|
@result{} "ick"
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(match-beginning 1) ; @r{The beginning of the match}
|
|
|
|
@result{} 4 ; @r{with @samp{qu} is at index 4.}
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(match-beginning 2) ; @r{The beginning of the match}
|
|
|
|
@result{} 6 ; @r{with @samp{ick} is at index 6.}
|
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
(match-end 1) ; @r{The end of the match}
|
|
|
|
@result{} 6 ; @r{with @samp{qu} is at index 6.}
|
|
|
|
|
|
|
|
(match-end 2) ; @r{The end of the match}
|
|
|
|
@result{} 9 ; @r{with @samp{ick} is at index 9.}
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
Here is another example. Point is initially located at the beginning
|
|
|
|
of the line. Searching moves point to between the space and the word
|
|
|
|
@samp{in}. The beginning of the entire match is at the 9th character of
|
|
|
|
the buffer (@samp{T}), and the beginning of the match for the first
|
|
|
|
subexpression is at the 13th character (@samp{c}).
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(list
|
|
|
|
(re-search-forward "The \\(cat \\)")
|
|
|
|
(match-beginning 0)
|
|
|
|
(match-beginning 1))
|
2008-11-03 19:19:41 +00:00
|
|
|
@result{} (17 9 13)
|
2007-09-06 04:25:08 +00:00
|
|
|
@end group
|
|
|
|
|
|
|
|
@group
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
I read "The cat @point{}in the hat comes back" twice.
|
|
|
|
^ ^
|
|
|
|
9 13
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
(In this case, the index returned is a buffer position; the first
|
|
|
|
character of the buffer counts as 1.)
|
|
|
|
|
|
|
|
@node Entire Match Data
|
|
|
|
@subsection Accessing the Entire Match Data
|
|
|
|
|
|
|
|
The functions @code{match-data} and @code{set-match-data} read or
|
|
|
|
write the entire match data, all at once.
|
|
|
|
|
|
|
|
@defun match-data &optional integers reuse reseat
|
|
|
|
This function returns a list of positions (markers or integers) that
|
2012-03-28 12:30:12 -07:00
|
|
|
record all the information on the text that the last search matched.
|
2007-09-06 04:25:08 +00:00
|
|
|
Element zero is the position of the beginning of the match for the
|
|
|
|
whole expression; element one is the position of the end of the match
|
|
|
|
for the expression. The next two elements are the positions of the
|
|
|
|
beginning and end of the match for the first subexpression, and so on.
|
|
|
|
In general, element
|
|
|
|
@ifnottex
|
|
|
|
number 2@var{n}
|
|
|
|
@end ifnottex
|
|
|
|
@tex
|
|
|
|
number {\mathsurround=0pt $2n$}
|
|
|
|
@end tex
|
|
|
|
corresponds to @code{(match-beginning @var{n})}; and
|
|
|
|
element
|
|
|
|
@ifnottex
|
|
|
|
number 2@var{n} + 1
|
|
|
|
@end ifnottex
|
|
|
|
@tex
|
|
|
|
number {\mathsurround=0pt $2n+1$}
|
|
|
|
@end tex
|
|
|
|
corresponds to @code{(match-end @var{n})}.
|
|
|
|
|
|
|
|
Normally all the elements are markers or @code{nil}, but if
|
|
|
|
@var{integers} is non-@code{nil}, that means to use integers instead
|
|
|
|
of markers. (In that case, the buffer itself is appended as an
|
|
|
|
additional element at the end of the list, to facilitate complete
|
|
|
|
restoration of the match data.) If the last match was done on a
|
|
|
|
string with @code{string-match}, then integers are always used,
|
|
|
|
since markers can't point into a string.
|
|
|
|
|
|
|
|
If @var{reuse} is non-@code{nil}, it should be a list. In that case,
|
|
|
|
@code{match-data} stores the match data in @var{reuse}. That is,
|
|
|
|
@var{reuse} is destructively modified. @var{reuse} does not need to
|
|
|
|
have the right length. If it is not long enough to contain the match
|
|
|
|
data, it is extended. If it is too long, the length of @var{reuse}
|
|
|
|
stays the same, but the elements that were not used are set to
|
|
|
|
@code{nil}. The purpose of this feature is to reduce the need for
|
|
|
|
garbage collection.
|
|
|
|
|
|
|
|
If @var{reseat} is non-@code{nil}, all markers on the @var{reuse} list
|
|
|
|
are reseated to point to nowhere.
|
|
|
|
|
|
|
|
As always, there must be no possibility of intervening searches between
|
|
|
|
the call to a search function and the call to @code{match-data} that is
|
|
|
|
intended to access the match data for that search.
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(match-data)
|
|
|
|
@result{} (#<marker at 9 in foo>
|
|
|
|
#<marker at 17 in foo>
|
|
|
|
#<marker at 13 in foo>
|
|
|
|
#<marker at 17 in foo>)
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@defun set-match-data match-list &optional reseat
|
|
|
|
This function sets the match data from the elements of @var{match-list},
|
|
|
|
which should be a list that was the value of a previous call to
|
|
|
|
@code{match-data}. (More precisely, anything that has the same format
|
|
|
|
will work.)
|
|
|
|
|
|
|
|
If @var{match-list} refers to a buffer that doesn't exist, you don't get
|
|
|
|
an error; that sets the match data in a meaningless but harmless way.
|
|
|
|
|
|
|
|
If @var{reseat} is non-@code{nil}, all markers on the @var{match-list} list
|
|
|
|
are reseated to point to nowhere.
|
|
|
|
|
2012-03-28 12:30:12 -07:00
|
|
|
@c TODO Make it properly obsolete.
|
2007-09-06 04:25:08 +00:00
|
|
|
@findex store-match-data
|
|
|
|
@code{store-match-data} is a semi-obsolete alias for @code{set-match-data}.
|
|
|
|
@end defun
|
|
|
|
|
|
|
|
@node Saving Match Data
|
|
|
|
@subsection Saving and Restoring the Match Data
|
|
|
|
|
2012-03-28 12:30:12 -07:00
|
|
|
When you call a function that may search, you may need to save
|
2007-09-06 04:25:08 +00:00
|
|
|
and restore the match data around that call, if you want to preserve the
|
|
|
|
match data from an earlier search for later use. Here is an example
|
|
|
|
that shows the problem that arises if you fail to save the match data:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(re-search-forward "The \\(cat \\)")
|
|
|
|
@result{} 48
|
2012-03-28 12:30:12 -07:00
|
|
|
(foo) ; @r{@code{foo} does more searching.}
|
2007-09-06 04:25:08 +00:00
|
|
|
(match-end 0)
|
|
|
|
@result{} 61 ; @r{Unexpected result---not 48!}
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
You can save and restore the match data with @code{save-match-data}:
|
|
|
|
|
|
|
|
@defmac save-match-data body@dots{}
|
|
|
|
This macro executes @var{body}, saving and restoring the match
|
|
|
|
data around it. The return value is the value of the last form in
|
|
|
|
@var{body}.
|
|
|
|
@end defmac
|
|
|
|
|
|
|
|
You could use @code{set-match-data} together with @code{match-data} to
|
|
|
|
imitate the effect of the special form @code{save-match-data}. Here is
|
|
|
|
how:
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(let ((data (match-data)))
|
|
|
|
(unwind-protect
|
|
|
|
@dots{} ; @r{Ok to change the original match data.}
|
|
|
|
(set-match-data data)))
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
Emacs automatically saves and restores the match data when it runs
|
|
|
|
process filter functions (@pxref{Filter Functions}) and process
|
|
|
|
sentinels (@pxref{Sentinels}).
|
|
|
|
|
|
|
|
@ignore
|
|
|
|
Here is a function which restores the match data provided the buffer
|
|
|
|
associated with it still exists.
|
|
|
|
|
|
|
|
@smallexample
|
|
|
|
@group
|
|
|
|
(defun restore-match-data (data)
|
|
|
|
@c It is incorrect to split the first line of a doc string.
|
|
|
|
@c If there's a problem here, it should be solved in some other way.
|
|
|
|
"Restore the match data DATA unless the buffer is missing."
|
|
|
|
(catch 'foo
|
|
|
|
(let ((d data))
|
|
|
|
@end group
|
|
|
|
(while d
|
|
|
|
(and (car d)
|
|
|
|
(null (marker-buffer (car d)))
|
|
|
|
@group
|
|
|
|
;; @file{match-data} @r{buffer is deleted.}
|
|
|
|
(throw 'foo nil))
|
|
|
|
(setq d (cdr d)))
|
|
|
|
(set-match-data data))))
|
|
|
|
@end group
|
|
|
|
@end smallexample
|
|
|
|
@end ignore
|
|
|
|
|
|
|
|
@node Search and Replace
|
|
|
|
@section Search and Replace
|
|
|
|
@cindex replacement after search
|
|
|
|
@cindex searching and replacing
|
|
|
|
|
2021-08-16 13:20:35 +02:00
|
|
|
If you want to find all matches for a regexp in part of the buffer
|
|
|
|
and replace them, the most flexible way is to write an explicit loop
|
|
|
|
using @code{re-search-forward} and @code{replace-match}, like this:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@example
|
|
|
|
(while (re-search-forward "foo[ \t]+bar" nil t)
|
|
|
|
(replace-match "foobar"))
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
|
|
|
@xref{Replacing Match,, Replacing the Text that Matched}, for a
|
|
|
|
description of @code{replace-match}.
|
|
|
|
|
2021-08-16 20:11:33 +03:00
|
|
|
It may be more convenient to limit the replacements to a specific
|
|
|
|
region. The function @code{replace-regexp-in-region} does that.
|
|
|
|
|
|
|
|
@defun replace-regexp-in-region regexp replacement &optional start end
|
|
|
|
This function replaces all the occurrences of @var{regexp} with
|
|
|
|
@var{replacement} in the region of buffer text between @var{start} and
|
|
|
|
@var{end}; @var{start} defaults to position of point, and @var{end}
|
|
|
|
defaults to the last accessible position of the buffer. The search
|
|
|
|
for @var{regexp} is case-sensitive, and @var{replacement} is inserted
|
|
|
|
without changing its letter-case. The @var{replacement} string can
|
|
|
|
use the same special elements starting with @samp{\} as
|
|
|
|
@code{replace-match} does. The function returns the number of
|
|
|
|
replaced occurrences, or @code{nil} if @var{regexp} is not found. The
|
|
|
|
function preserves the position of point.
|
2021-08-16 13:20:35 +02:00
|
|
|
|
|
|
|
@example
|
|
|
|
(replace-regexp-in-region "foo[ \t]+bar" "foobar")
|
|
|
|
@end example
|
2021-08-16 20:11:33 +03:00
|
|
|
@end defun
|
2021-08-16 13:20:35 +02:00
|
|
|
|
2021-08-16 20:11:33 +03:00
|
|
|
@defun replace-string-in-region string replacement &optional start end
|
|
|
|
This function works similarly to @code{replace-regexp-in-region},
|
|
|
|
but searches for, and replaces, literal @var{string}s instead of
|
|
|
|
regular expressions.
|
|
|
|
@end defun
|
2021-08-16 13:20:35 +02:00
|
|
|
|
|
|
|
Emacs also has special functions for replacing matches in a string.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@defun replace-regexp-in-string regexp rep string &optional fixedcase literal subexp start
|
|
|
|
This function copies @var{string} and searches it for matches for
|
|
|
|
@var{regexp}, and replaces them with @var{rep}. It returns the
|
|
|
|
modified copy. If @var{start} is non-@code{nil}, the search for
|
2019-06-26 11:23:32 +02:00
|
|
|
matches starts at that index in @var{string}, and the returned value
|
|
|
|
does not include the first @var{start} characters of @var{string}.
|
|
|
|
To get the whole transformed string, concatenate the first
|
|
|
|
@var{start} characters of @var{string} with the return value.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
This function uses @code{replace-match} to do the replacement, and it
|
|
|
|
passes the optional arguments @var{fixedcase}, @var{literal} and
|
|
|
|
@var{subexp} along to @code{replace-match}.
|
|
|
|
|
|
|
|
Instead of a string, @var{rep} can be a function. In that case,
|
|
|
|
@code{replace-regexp-in-string} calls @var{rep} for each match,
|
|
|
|
passing the text of the match as its sole argument. It collects the
|
|
|
|
value @var{rep} returns and passes that to @code{replace-match} as the
|
2012-03-28 12:30:12 -07:00
|
|
|
replacement string. The match data at this point are the result
|
2007-09-06 04:25:08 +00:00
|
|
|
of matching @var{regexp} against a substring of @var{string}.
|
2020-09-15 16:50:44 +02:00
|
|
|
@end defun
|
|
|
|
|
2021-09-18 21:42:17 +03:00
|
|
|
@defun string-replace from-string to-string in-string
|
|
|
|
This function replaces all occurrences of @var{from-string} with
|
|
|
|
@var{to-string} in @var{in-string} and returns the result. It may
|
2020-09-28 12:04:10 +02:00
|
|
|
return one of its arguments unchanged, a constant string or a new
|
|
|
|
string. Case is significant, and text properties are ignored.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defun
|
|
|
|
|
|
|
|
If you want to write a command along the lines of @code{query-replace},
|
|
|
|
you can use @code{perform-replace} to do the work.
|
|
|
|
|
2018-04-20 10:18:06 +03:00
|
|
|
@defun perform-replace from-string replacements query-flag regexp-flag delimited-flag &optional repeat-count map start end backward region-noncontiguous-p
|
2007-09-06 04:25:08 +00:00
|
|
|
This function is the guts of @code{query-replace} and related
|
|
|
|
commands. It searches for occurrences of @var{from-string} in the
|
|
|
|
text between positions @var{start} and @var{end} and replaces some or
|
|
|
|
all of them. If @var{start} is @code{nil} (or omitted), point is used
|
|
|
|
instead, and the end of the buffer's accessible portion is used for
|
2018-04-20 10:18:06 +03:00
|
|
|
@var{end}. (If the optional argument @var{backward} is
|
|
|
|
non-@code{nil}, the search starts at @var{end} and goes backward.)
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
If @var{query-flag} is @code{nil}, it replaces all
|
|
|
|
occurrences; otherwise, it asks the user what to do about each one.
|
|
|
|
|
|
|
|
If @var{regexp-flag} is non-@code{nil}, then @var{from-string} is
|
|
|
|
considered a regular expression; otherwise, it must match literally. If
|
|
|
|
@var{delimited-flag} is non-@code{nil}, then only replacements
|
|
|
|
surrounded by word boundaries are considered.
|
|
|
|
|
|
|
|
The argument @var{replacements} specifies what to replace occurrences
|
|
|
|
with. If it is a string, that string is used. It can also be a list of
|
|
|
|
strings, to be used in cyclic order.
|
|
|
|
|
2008-10-18 14:07:36 +00:00
|
|
|
If @var{replacements} is a cons cell, @w{@code{(@var{function}
|
|
|
|
. @var{data})}}, this means to call @var{function} after each match to
|
2007-09-06 04:25:08 +00:00
|
|
|
get the replacement text. This function is called with two arguments:
|
|
|
|
@var{data}, and the number of replacements already made.
|
|
|
|
|
|
|
|
If @var{repeat-count} is non-@code{nil}, it should be an integer. Then
|
|
|
|
it specifies how many times to use each of the strings in the
|
|
|
|
@var{replacements} list before advancing cyclically to the next one.
|
|
|
|
|
|
|
|
If @var{from-string} contains upper-case letters, then
|
|
|
|
@code{perform-replace} binds @code{case-fold-search} to @code{nil}, and
|
2012-03-28 12:30:12 -07:00
|
|
|
it uses the @var{replacements} without altering their case.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Normally, the keymap @code{query-replace-map} defines the possible
|
|
|
|
user responses for queries. The argument @var{map}, if
|
|
|
|
non-@code{nil}, specifies a keymap to use instead of
|
|
|
|
@code{query-replace-map}.
|
2008-10-18 14:07:36 +00:00
|
|
|
|
2018-04-20 10:18:06 +03:00
|
|
|
Non-@code{nil} @var{region-noncontiguous-p} means that the region
|
|
|
|
between @var{start} and @var{end} is composed of noncontiguous pieces.
|
|
|
|
The most common example of this is a rectangular region, where the
|
|
|
|
pieces are separated by newline characters.
|
|
|
|
|
2008-10-18 14:07:36 +00:00
|
|
|
This function uses one of two functions to search for the next
|
|
|
|
occurrence of @var{from-string}. These functions are specified by the
|
|
|
|
values of two variables: @code{replace-re-search-function} and
|
|
|
|
@code{replace-search-function}. The former is called when the
|
|
|
|
argument @var{regexp-flag} is non-@code{nil}, the latter when it is
|
|
|
|
@code{nil}.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defun
|
|
|
|
|
|
|
|
@defvar query-replace-map
|
|
|
|
This variable holds a special keymap that defines the valid user
|
|
|
|
responses for @code{perform-replace} and the commands that use it, as
|
|
|
|
well as @code{y-or-n-p} and @code{map-y-or-n-p}. This map is unusual
|
|
|
|
in two ways:
|
|
|
|
|
|
|
|
@itemize @bullet
|
|
|
|
@item
|
2015-09-15 08:46:48 -07:00
|
|
|
The key bindings are not commands, just symbols that are meaningful
|
2007-09-06 04:25:08 +00:00
|
|
|
to the functions that use this map.
|
|
|
|
|
|
|
|
@item
|
|
|
|
Prefix keys are not supported; each key binding must be for a
|
|
|
|
single-event key sequence. This is because the functions don't use
|
|
|
|
@code{read-key-sequence} to get the input; instead, they read a single
|
Restore some of the quoting in the manuals
* doc/lispref/windows.texi (Coordinates and Windows)
(Coordinates and Windows):
* doc/lispref/variables.texi (Lexical Binding)
(File Local Variables):
* doc/lispref/text.texi (Format Properties):
* doc/lispref/symbols.texi (Symbol Components):
* doc/lispref/strings.texi (Creating Strings):
* doc/lispref/sequences.texi (Sequence Functions):
* doc/lispref/searching.texi (Regexp Special, Regexp Search)
(Search and Replace):
* doc/lispref/processes.texi (Bindat Spec):
* doc/lispref/os.texi (Idle Timers):
* doc/lispref/objects.texi (Basic Char Syntax):
* doc/lispref/numbers.texi (Float Basics, Random Numbers):
* doc/lispref/nonascii.texi (Character Properties):
* doc/lispref/modes.texi (Major Mode Conventions, Mode Hooks)
(Mode Line Variables):
* doc/lispref/minibuf.texi (Text from Minibuffer):
* doc/lispref/loading.texi (Autoload):
* doc/lispref/keymaps.texi (Controlling Active Maps):
* doc/lispref/frames.texi (Frame Layout, Size and Position)
(Size Parameters, Implied Frame Resizing):
* doc/lispref/files.texi (Changing Files, Magic File Names):
* doc/lispref/eval.texi (Self-Evaluating Forms):
* doc/lispref/display.texi (Progress, Abstract Display)
(Abstract Display Example, Bidirectional Display):
* doc/lispref/commands.texi (Event Mod):
* doc/emacs/windows.texi (Displaying Buffers):
* doc/emacs/trouble.texi (Bug Criteria, Checklist):
* doc/emacs/text.texi (Enriched Text):
* doc/emacs/programs.texi (MixedCase Words):
* doc/emacs/picture-xtra.texi (Insert in Picture)
(Tabs in Picture):
* doc/emacs/misc.texi (Emacs Server, Printing):
* doc/emacs/mini.texi (Minibuffer History):
* doc/emacs/maintaining.texi (Old Revisions, VC Change Log)
(Pulling / Pushing):
* doc/emacs/killing.texi (Yanking, Cut and Paste, Clipboard):
* doc/emacs/help.texi (Help, Help Echo):
* doc/emacs/glossary.texi (Glossary):
* doc/emacs/frames.texi (Mouse Commands, Creating Frames)
(Frame Commands):
* doc/emacs/files.texi (Reverting, Saving, Directories):
* doc/emacs/entering.texi (Exiting):
* doc/emacs/emacs.texi (Top):
* doc/emacs/cmdargs.texi (Window Size X, Icons X):
* doc/emacs/anti.texi (Antinews): Restore quoting of text where
appropriate or replace quoting with @dfn.
* doc/misc/ediff.texi (Window and Frame Configuration):
* doc/lispref/processes.texi (Network Feature Testing):
* doc/lispref/display.texi (Display Margins): Quote the phrase
after "a.k.a." where appropriate.
2015-09-16 12:56:45 +03:00
|
|
|
event and look it up ``by hand''.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end itemize
|
|
|
|
@end defvar
|
|
|
|
|
2015-09-15 08:46:48 -07:00
|
|
|
Here are the meaningful bindings for @code{query-replace-map}.
|
2007-09-06 04:25:08 +00:00
|
|
|
Several of them are meaningful only for @code{query-replace} and
|
|
|
|
friends.
|
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item act
|
2012-03-28 12:30:12 -07:00
|
|
|
Do take the action being considered---in other words, ``yes''.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item skip
|
2012-03-28 12:30:12 -07:00
|
|
|
Do not take action for this question---in other words, ``no''.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item exit
|
2012-03-28 12:30:12 -07:00
|
|
|
Answer this question ``no'', and give up on the entire series of
|
|
|
|
questions, assuming that the answers will be ``no''.
|
|
|
|
|
|
|
|
@item exit-prefix
|
|
|
|
Like @code{exit}, but add the key that was pressed to
|
2013-12-04 02:12:02 +02:00
|
|
|
@code{unread-command-events} (@pxref{Event Input Misc}).
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item act-and-exit
|
2012-03-28 12:30:12 -07:00
|
|
|
Answer this question ``yes'', and give up on the entire series of
|
|
|
|
questions, assuming that subsequent answers will be ``no''.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item act-and-show
|
2012-03-28 12:30:12 -07:00
|
|
|
Answer this question ``yes'', but show the results---don't advance yet
|
2007-09-06 04:25:08 +00:00
|
|
|
to the next question.
|
|
|
|
|
|
|
|
@item automatic
|
|
|
|
Answer this question and all subsequent questions in the series with
|
2012-03-28 12:30:12 -07:00
|
|
|
``yes'', without further user interaction.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item backup
|
|
|
|
Move back to the previous place that a question was asked about.
|
|
|
|
|
2016-02-24 12:35:46 +11:00
|
|
|
@item undo
|
|
|
|
Undo last replacement and move back to the place where that
|
|
|
|
replacement was performed.
|
|
|
|
|
|
|
|
@item undo-all
|
|
|
|
Undo all replacements and move back to the place where the first
|
|
|
|
replacement was performed.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@item edit
|
|
|
|
Enter a recursive edit to deal with this question---instead of any
|
|
|
|
other action that would normally be taken.
|
|
|
|
|
2012-03-28 12:30:12 -07:00
|
|
|
@item edit-replacement
|
|
|
|
Edit the replacement for this question in the minibuffer.
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@item delete-and-edit
|
|
|
|
Delete the text being considered, then enter a recursive edit to replace
|
|
|
|
it.
|
|
|
|
|
|
|
|
@item recenter
|
2012-09-09 14:43:47 +08:00
|
|
|
@itemx scroll-up
|
|
|
|
@itemx scroll-down
|
|
|
|
@itemx scroll-other-window
|
|
|
|
@itemx scroll-other-window-down
|
|
|
|
Perform the specified window scroll operation, then ask the same
|
|
|
|
question again. Only @code{y-or-n-p} and related functions use this
|
|
|
|
answer.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@item quit
|
|
|
|
Perform a quit right away. Only @code{y-or-n-p} and related functions
|
|
|
|
use this answer.
|
|
|
|
|
|
|
|
@item help
|
|
|
|
Display some help, then ask again.
|
|
|
|
@end table
|
|
|
|
|
2008-10-18 14:27:40 +00:00
|
|
|
@defvar multi-query-replace-map
|
|
|
|
This variable holds a keymap that extends @code{query-replace-map} by
|
2021-12-21 11:19:04 +01:00
|
|
|
providing additional key bindings that are useful in multi-buffer
|
2015-09-15 08:46:48 -07:00
|
|
|
replacements. The additional bindings are:
|
2012-03-28 12:30:12 -07:00
|
|
|
|
|
|
|
@table @code
|
|
|
|
@item automatic-all
|
|
|
|
Answer this question and all subsequent questions in the series with
|
|
|
|
``yes'', without further user interaction, for all remaining buffers.
|
|
|
|
|
|
|
|
@item exit-current
|
|
|
|
Answer this question ``no'', and give up on the entire series of
|
|
|
|
questions for the current buffer. Continue to the next buffer in the
|
|
|
|
sequence.
|
|
|
|
@end table
|
2008-10-18 14:27:40 +00:00
|
|
|
@end defvar
|
|
|
|
|
2008-10-18 14:07:36 +00:00
|
|
|
@defvar replace-search-function
|
|
|
|
This variable specifies a function that @code{perform-replace} calls
|
|
|
|
to search for the next string to replace. Its default value is
|
|
|
|
@code{search-forward}. Any other value should name a function of 3
|
|
|
|
arguments: the first 3 arguments of @code{search-forward}
|
|
|
|
(@pxref{String Search}).
|
|
|
|
@end defvar
|
|
|
|
|
|
|
|
@defvar replace-re-search-function
|
|
|
|
This variable specifies a function that @code{perform-replace} calls
|
|
|
|
to search for the next regexp to replace. Its default value is
|
|
|
|
@code{re-search-forward}. Any other value should name a function of 3
|
|
|
|
arguments: the first 3 arguments of @code{re-search-forward}
|
|
|
|
(@pxref{Regexp Search}).
|
|
|
|
@end defvar
|
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
@node Standard Regexps
|
|
|
|
@section Standard Regular Expressions Used in Editing
|
|
|
|
@cindex regexps used standardly in editing
|
|
|
|
@cindex standard regexps used in editing
|
|
|
|
|
|
|
|
This section describes some variables that hold regular expressions
|
|
|
|
used for certain purposes in editing:
|
|
|
|
|
2009-05-21 15:31:31 +00:00
|
|
|
@defopt page-delimiter
|
2007-09-06 04:25:08 +00:00
|
|
|
This is the regular expression describing line-beginnings that separate
|
|
|
|
pages. The default value is @code{"^\014"} (i.e., @code{"^^L"} or
|
|
|
|
@code{"^\C-l"}); this matches a line that starts with a formfeed
|
|
|
|
character.
|
2009-05-21 15:31:31 +00:00
|
|
|
@end defopt
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
The following two regular expressions should @emph{not} assume the
|
|
|
|
match always starts at the beginning of a line; they should not use
|
|
|
|
@samp{^} to anchor the match. Most often, the paragraph commands do
|
|
|
|
check for a match only at the beginning of a line, which means that
|
|
|
|
@samp{^} would be superfluous. When there is a nonzero left margin,
|
|
|
|
they accept matches that start after the left margin. In that case, a
|
|
|
|
@samp{^} would be incorrect. However, a @samp{^} is harmless in modes
|
|
|
|
where a left margin is never used.
|
|
|
|
|
2009-05-21 15:31:31 +00:00
|
|
|
@defopt paragraph-separate
|
2007-09-06 04:25:08 +00:00
|
|
|
This is the regular expression for recognizing the beginning of a line
|
|
|
|
that separates paragraphs. (If you change this, you may have to
|
|
|
|
change @code{paragraph-start} also.) The default value is
|
|
|
|
@w{@code{"[@ \t\f]*$"}}, which matches a line that consists entirely of
|
|
|
|
spaces, tabs, and form feeds (after its left margin).
|
2009-05-21 15:31:31 +00:00
|
|
|
@end defopt
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2009-05-21 15:31:31 +00:00
|
|
|
@defopt paragraph-start
|
2007-09-06 04:25:08 +00:00
|
|
|
This is the regular expression for recognizing the beginning of a line
|
|
|
|
that starts @emph{or} separates paragraphs. The default value is
|
|
|
|
@w{@code{"\f\\|[ \t]*$"}}, which matches a line containing only
|
|
|
|
whitespace or starting with a form feed (after its left margin).
|
2009-05-21 15:31:31 +00:00
|
|
|
@end defopt
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2009-05-21 15:31:31 +00:00
|
|
|
@defopt sentence-end
|
2007-09-06 04:25:08 +00:00
|
|
|
If non-@code{nil}, the value should be a regular expression describing
|
|
|
|
the end of a sentence, including the whitespace following the
|
|
|
|
sentence. (All paragraph boundaries also end sentences, regardless.)
|
|
|
|
|
2012-03-28 12:30:12 -07:00
|
|
|
If the value is @code{nil}, as it is by default, then the function
|
|
|
|
@code{sentence-end} constructs the regexp. That is why you
|
2007-09-06 04:25:08 +00:00
|
|
|
should always call the function @code{sentence-end} to obtain the
|
|
|
|
regexp to be used to recognize the end of a sentence.
|
2009-05-21 15:31:31 +00:00
|
|
|
@end defopt
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@defun sentence-end
|
|
|
|
This function returns the value of the variable @code{sentence-end},
|
|
|
|
if non-@code{nil}. Otherwise it returns a default value based on the
|
|
|
|
values of the variables @code{sentence-end-double-space}
|
|
|
|
(@pxref{Definition of sentence-end-double-space}),
|
2012-03-28 12:30:12 -07:00
|
|
|
@code{sentence-end-without-period}, and
|
2007-09-06 04:25:08 +00:00
|
|
|
@code{sentence-end-without-space}.
|
|
|
|
@end defun
|
2023-06-19 11:09:00 -07:00
|
|
|
|
|
|
|
@node POSIX Regexps
|
|
|
|
@section Emacs versus POSIX Regular Expressions
|
|
|
|
@cindex POSIX regular expressions
|
|
|
|
|
2023-12-10 13:22:04 +01:00
|
|
|
Regular expression syntax varies significantly among computer programs.
|
2023-06-19 11:09:00 -07:00
|
|
|
When writing Elisp code that generates regular expressions for use by other
|
|
|
|
programs, it is helpful to know how syntax variants differ.
|
|
|
|
To give a feel for the variation, this section discusses how
|
|
|
|
Emacs regular expressions differ from two syntax variants standarded by POSIX:
|
|
|
|
basic regular expressions (BREs) and extended regular expressions (EREs).
|
|
|
|
Plain @command{grep} uses BREs, and @samp{grep -E} uses EREs.
|
|
|
|
|
|
|
|
Emacs regular expressions have a syntax closer to EREs than to BREs,
|
|
|
|
with some extensions. Here is a summary of how POSIX BREs and EREs
|
|
|
|
differ from Emacs regular expressions.
|
|
|
|
|
|
|
|
@itemize @bullet
|
|
|
|
@item
|
|
|
|
In POSIX BREs @samp{+} and @samp{?} are not special.
|
|
|
|
The only backslash escape sequences are @samp{\(@dots{}\)},
|
|
|
|
@samp{\@{@dots{}\@}}, @samp{\1} through @samp{\9}, along with the
|
|
|
|
escaped special characters @samp{\$}, @samp{\*}, @samp{\.}, @samp{\[},
|
|
|
|
@samp{\\}, and @samp{\^}.
|
|
|
|
Therefore @samp{\(?:} acts like @samp{\([?]:}.
|
|
|
|
POSIX does not define how other BRE escapes behave;
|
|
|
|
for example, GNU @command{grep} treats @samp{\|} like Emacs does,
|
|
|
|
but does not support all the Emacs escapes.
|
|
|
|
|
2023-06-22 08:32:16 +03:00
|
|
|
@item
|
|
|
|
In POSIX BREs, it is an implementation option whether @samp{^} is special
|
|
|
|
after @samp{\(}; GNU @command{grep} treats it like Emacs does.
|
|
|
|
In POSIX EREs, @samp{^} is always special outside of bracket expressions,
|
|
|
|
which means the ERE @samp{x^} never matches.
|
|
|
|
In Emacs regular expressions, @samp{^} is special only at the
|
|
|
|
beginning of the regular expression, or after @samp{\(}, @samp{\(?:}
|
|
|
|
or @samp{\|}.
|
|
|
|
|
|
|
|
@item
|
|
|
|
In POSIX BREs, it is an implementation option whether @samp{$} is
|
|
|
|
special before @samp{\)}; GNU @command{grep} treats it like Emacs
|
|
|
|
does. In POSIX EREs, @samp{$} is always special outside of bracket
|
|
|
|
expressions (@pxref{Regexp Special, bracket expressions}), which means
|
|
|
|
the ERE @samp{$x} never matches. In Emacs regular expressions,
|
|
|
|
@samp{$} is special only at the end of the regular expression, or
|
|
|
|
before @samp{\)} or @samp{\|}.
|
|
|
|
|
2023-06-19 11:09:00 -07:00
|
|
|
@item
|
|
|
|
In POSIX EREs @samp{@{}, @samp{(} and @samp{|} are special,
|
|
|
|
and @samp{)} is special when matched with a preceding @samp{(}.
|
|
|
|
These special characters do not use preceding backslashes;
|
|
|
|
@samp{(?} produces undefined results.
|
|
|
|
The only backslash escape sequences are the escaped special characters
|
|
|
|
@samp{\$}, @samp{\(}, @samp{\)}, @samp{\*}, @samp{\+}, @samp{\.},
|
|
|
|
@samp{\?}, @samp{\[}, @samp{\\}, @samp{\^}, @samp{\@{} and @samp{\|}.
|
|
|
|
POSIX does not define how other ERE escapes behave;
|
|
|
|
for example, GNU @samp{grep -E} treats @samp{\1} like Emacs does,
|
|
|
|
but does not support all the Emacs escapes.
|
|
|
|
|
|
|
|
@item
|
|
|
|
In POSIX BREs and EREs, undefined results are produced by repetition
|
|
|
|
operators at the start of a regular expression or subexpression
|
|
|
|
(possibly preceded by @samp{^}), except that the repetition operator
|
|
|
|
@samp{*} has the same behavior in BREs as in Emacs.
|
|
|
|
In Emacs, these operators are treated as ordinary.
|
|
|
|
|
|
|
|
@item
|
|
|
|
In BREs and EREs, undefined results are produced by two repetition
|
|
|
|
operators in sequence. In Emacs, these have well-defined behavior,
|
|
|
|
e.g., @samp{a**} is equivalent to @samp{a*}.
|
|
|
|
|
|
|
|
@item
|
|
|
|
In BREs and EREs, undefined results are produced by empty regular
|
|
|
|
expressions or subexpressions. In Emacs these have well-defined
|
|
|
|
behavior, e.g., @samp{\(\)*} matches the empty string,
|
|
|
|
|
|
|
|
@item
|
|
|
|
In BREs and EREs, undefined results are produced for the named
|
|
|
|
character classes @samp{[:ascii:]}, @samp{[:multibyte:]},
|
|
|
|
@samp{[:nonascii:]}, @samp{[:unibyte:]}, and @samp{[:word:]}.
|
|
|
|
|
|
|
|
@item
|
2023-06-19 11:09:00 -07:00
|
|
|
BREs and EREs can contain collating symbols and equivalence
|
|
|
|
class expressions within bracket expressions, e.g., @samp{[[.ch.]d[=a=]]}.
|
2023-06-19 11:09:00 -07:00
|
|
|
Emacs regular expressions do not support this.
|
|
|
|
|
|
|
|
@item
|
|
|
|
BREs, EREs, and the strings they match cannot contain encoding errors
|
|
|
|
or NUL bytes. In Emacs these constructs simply match themselves.
|
|
|
|
|
|
|
|
@item
|
|
|
|
BRE and ERE searching always finds the longest match.
|
|
|
|
Emacs searching by default does not necessarily do so.
|
|
|
|
@xref{Longest Match}.
|
|
|
|
@end itemize
|