Regular expressions have a syntax in which a few characters are special constructs and the rest are ordinary. An ordinary character is a simple regular expression that matches that character and nothing else. The special characters are ‘.’, ‘*’, ‘+’, ‘?’, ‘[’, ‘]’, ‘^’, ‘$’, and ‘\’; no new special characters will be defined in the future. Any other character appearing in a regular expression is ordinary, unless a ‘\’ precedes it.
For example, ‘f’ is not a special character, so it is ordinary, and therefore ‘f’ is a regular expression that matches the string ‘f’ and no other string. (It does not match the string ‘ff’.) Likewise, ‘o’ is a regular expression that matches only ‘o’.
Any two regular expressions a and b can be concatenated. The result is a regular expression that matches a string if a matches some amount of the beginning of that string and b matches the rest of the string.
As a simple example, we can concatenate the regular expressions ‘f’ and ‘o’ to get the regular expression ‘fo’, which matches only the string ‘fo’. Still trivial. To do something more powerful, you need to use one of the special characters. Here is a list of them:
‘*’ always applies to the smallest possible preceding expression. Thus, ‘fo*’ has a repeating ‘o’, not a repeating ‘fo’.
The matcher processes a ‘*’ construct by matching, immediately, as many repetitions as can be found; it is "greedy". Then it continues with the rest of the pattern. If that fails, backtracking occurs, discarding some of the matches of the ‘*’-modified construct in case that makes it possible to match the rest of the pattern. For example, in matching ‘ca*ar’ against the string ‘caaar’, the ‘a*’ first tries to match all three ‘a’s; but the rest of the pattern is ‘ar’ and there is only ‘r’ left to match, so this try fails. The next alternative is for ‘a*’ to match only two ‘a’s. With this choice, the rest of the regexp matches successfully.
Nested repetition operators can be extremely slow if they specify
backtracking loops. For example, it could take hours for the regular
expression ‘\(x+y*\)*a’ to match the sequence
‘xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxz’. The slowness is because
SXEmacs must try each imaginable way of grouping the 35 ‘x’'s before
concluding that none of them can work. To make sure your regular
expressions run fast, check nested repetitions carefully.
This construct is very useful for when you want to match the text inside a pair of delimiters. For instance, ‘/\*.*?\*/’ will match C comments in a string. This could not easily be achieved without the use of a non-greedy quantifier.
This construct has not been available prior to XEmacs 20.4. It is not
available in FSF Emacs.
Unfortunately, the non-greedy version of this quantifier does not exist
currently, although it does in Perl.
The usual regular expression special characters are not special inside a character set. A completely different set of special characters exists inside character sets: ‘]’, ‘-’ and ‘^’.
‘-’ is used for ranges of characters. To write a range, write two characters with a ‘-’ between them. Thus, ‘[a-z]’ matches any lower case letter. Ranges may be intermixed freely with individual characters, as in ‘[a-z$%.]’, which matches any lower case letter or ‘$’, ‘%’, or a period.
To include a ‘]’ in a character set, make it the first character. For example, ‘[]a]’ matches ‘]’ or ‘a’. To include a ‘-’, write ‘-’ as the first character in the set, or put it immediately after a range. (You can replace one individual character c with the range ‘c-c’ to make a place to put the ‘-’.) There is no way to write a set containing just ‘-’ and ‘]’.
To include ‘^’ in a set, put it anywhere but at the beginning of
the set.
‘^’ is not special in a character set unless it is the first character. The character following the ‘^’ is treated as if it were first (thus, ‘-’ and ‘]’ are not special there).
Note that a complement character set can match a newline, unless
newline is mentioned as one of the characters not to match.
When matching a string instead of a buffer, ‘^’ matches at the
beginning of the string or after a newline character ‘\n’.
When matching a string instead of a buffer, ‘$’ matches at the end
of the string or before a newline character ‘\n’.
Because ‘\’ quotes special characters, ‘\$’ is a regular expression that matches only ‘$’, and ‘\[’ is a regular expression that matches only ‘[’, and so on.
Note that ‘\’ also has special meaning in the read syntax of Lisp
strings (see String Type), and must be quoted with ‘\’. For
example, the regular expression that matches the ‘\’ character is
‘\\’. To write a Lisp string that contains the characters
‘\\’, Lisp syntax requires you to quote each ‘\’ with another
‘\’. Therefore, the read syntax for a regular expression matching
‘\’ is "\\\\".
Please note: For historical compatibility, special characters are treated as ordinary ones if they are in contexts where their special meanings make no sense. For example, ‘*foo’ treats ‘*’ as ordinary since there is no preceding expression on which the ‘*’ can act. It is poor practice to depend on this behavior; quote the special character anyway, regardless of where it appears.
For the most part, ‘\’ followed by any character matches only that character. However, there are several exceptions: characters that, when preceded by ‘\’, are special constructs. Such characters are always ordinary when encountered on their own. Here is a table of ‘\’ constructs:
Thus, ‘foo\|bar’ matches either ‘foo’ or ‘bar’ but no other string.
‘\|’ applies to the largest possible surrounding expressions. Only a surrounding ‘\( ... \)’ grouping can limit the grouping power of ‘\|’.
Full backtracking capability exists to handle multiple uses of ‘\|’.
This last application is not a consequence of the idea of a
parenthetical grouping; it is a separate feature that happens to be
assigned as a second meaning to the same ‘\( ... \)’ construct
because there is no conflict in practice between the two meanings.
Here is an explanation of this feature:
In other words, after the end of a ‘\( ... \)’ construct, the matcher remembers the beginning and end of the text matched by that construct. Then, later on in the regular expression, you can use ‘\’ followed by digit to match that same text, whatever it may have been.
The strings matching the first nine ‘\( ... \)’ constructs appearing in a regular expression are assigned numbers 1 through 9 in the order that the open parentheses appear in the regular expression. So you can use ‘\1’ through ‘\9’ to refer to the text matched by the corresponding ‘\( ... \)’ constructs.
For example, ‘\(.*\)\1’ matches any newline-free string that is
composed of two identical halves. The ‘\(.*\)’ matches the first
half, which may be anything, but the ‘\1’ that follows must match
the same exact text.
This is useful when you need a lot of grouping ‘\( ... \)’ constructs, but only want to remember one or two – or if you have more than nine groupings and need to use backreferences to refer to the groupings at the end. It also allows construction of regular expressions from variable subexpressions that contain varying numbers of non-capturing subexpressions, without disturbing the group counts for the main expression. For example
(let ((sre (if foo "\\(?:bar\\|baz\\)" "quux")))
(re-search-forward (format "a\\(b+ %s c+\\) d" sre) nil t)
(match-string 1))
It is very tedious to write this kind of code without shy groups, even if you know what all the alternative subexpressions will look like.
Using ‘\(?: ... \)’ rather than ‘\( ... \)’ should
give little performance gain, as the start of each group must be
recorded for the purpose of back-tracking in any case, and no string
copying is done until match-string is called.
The shy grouping operator has been borrowed from Perl, and was not
available prior to XEmacs 20.3, and has only been available in GNU Emacs
since version 21.
The following regular expression constructs match the empty string—that is, they don't use up any characters—but whether they match depends on the context.
Not every string is a valid regular expression. For example, a string
with unbalanced square brackets is invalid (with a few exceptions, such
as ‘[]]’), and so is a string that ends with a single ‘\’. If
an invalid regular expression is passed to any of the search functions,
an invalid-regexp error is signaled.
This function returns a regular expression string that matches exactly string and nothing else. This allows you to request an exact string match when calling a function that wants a regular expression.
(regexp-quote "^The cat$") ⇒ "\\^The cat\\$"One use of
regexp-quoteis to combine an exact string match with context described as a regular expression. For example, this searches for the string that is the value ofstring, surrounded by whitespace:(re-search-forward (concat "\\s-" (regexp-quote string) "\\s-"))