Mercurial > emacs
annotate lisp/emacs-lisp/rx.el @ 56807:d2c0e48f4d5a
Adapt sectioning in Info to the node structure.
(Invoking emacsclient): Make "Invoking emacsclient" a subsection
of "Using Emacs as a Server".
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Fri, 27 Aug 2004 23:25:13 +0000 |
parents | 93f6ab2a0eb5 |
children | a6ae354aa8ef 4c90ffeb71c5 |
rev | line source |
---|---|
39516 | 1 ;;; rx.el --- sexp notation for regular expressions |
2 | |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
3 ;; Copyright (C) 2001, 03, 2004 Free Software Foundation, Inc. |
39516 | 4 |
5 ;; Author: Gerd Moellmann <gerd@gnu.org> | |
6 ;; Maintainer: FSF | |
7 ;; Keywords: strings, regexps, extensions | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Commentary: | |
27 | |
28 ;; This is another implementation of sexp-form regular expressions. | |
29 ;; It was unfortunately written without being aware of the Sregex | |
30 ;; package coming with Emacs, but as things stand, Rx completely | |
31 ;; covers all regexp features, which Sregex doesn't, doesn't suffer | |
32 ;; from the bugs mentioned in the commentary section of Sregex, and | |
33 ;; uses a nicer syntax (IMHO, of course :-). | |
34 | |
55102 | 35 ;; This significantly extended version of the original, is almost |
36 ;; compatible with Sregex. The only incompatibility I (fx) know of is | |
37 ;; that the `repeat' form can't have multiple regexp args. | |
38 | |
39 ;; Now alternative forms are provided for a degree of compatibility | |
40 ;; with Shivers' attempted definitive SRE notation | |
41 ;; <URL:http://www.ai.mit.edu/~/shivers/sre.txt>. SRE forms not | |
42 ;; catered for include: dsm, uncase, w/case, w/nocase, ,@<exp>, | |
43 ;; ,<exp>, (word ...), word+, posix-string, and character class forms. | |
44 ;; Some forms are inconsistent with SRE, either for historical reasons | |
45 ;; or because of the implementation -- simple translation into Emacs | |
46 ;; regexp strings. These include: any, word. Also, case-sensitivity | |
47 ;; and greediness are controlled by variables external to the regexp, | |
48 ;; and you need to feed the forms to the `posix-' functions to get | |
49 ;; SRE's POSIX semantics. There are probably more difficulties. | |
50 | |
39516 | 51 ;; Rx translates a sexp notation for regular expressions into the |
52 ;; usual string notation. The translation can be done at compile-time | |
53 ;; by using the `rx' macro. It can be done at run-time by calling | |
54 ;; function `rx-to-string'. See the documentation of `rx' for a | |
55 ;; complete description of the sexp notation. | |
56 ;; | |
57 ;; Some examples of string regexps and their sexp counterparts: | |
58 ;; | |
59 ;; "^[a-z]*" | |
60 ;; (rx (and line-start (0+ (in "a-z")))) | |
61 ;; | |
62 ;; "\n[^ \t]" | |
63 ;; (rx (and "\n" (not blank))), or | |
64 ;; (rx (and "\n" (not (any " \t")))) | |
65 ;; | |
66 ;; "\\*\\*\\* EOOH \\*\\*\\*\n" | |
67 ;; (rx "*** EOOH ***\n") | |
68 ;; | |
69 ;; "\\<\\(catch\\|finally\\)\\>[^_]" | |
70 ;; (rx (and word-start (submatch (or "catch" "finally")) word-end | |
71 ;; (not (any ?_)))) | |
72 ;; | |
73 ;; "[ \t\n]*:\\([^:]+\\|$\\)" | |
74 ;; (rx (and (zero-or-more (in " \t\n")) ":" | |
75 ;; (submatch (or line-end (one-or-more (not (any ?:))))))) | |
76 ;; | |
77 ;; "^content-transfer-encoding:\\(\n?[\t ]\\)*quoted-printable\\(\n?[\t ]\\)*" | |
78 ;; (rx (and line-start | |
79 ;; "content-transfer-encoding:" | |
48938
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
80 ;; (+ (? ?\n)) blank |
39516 | 81 ;; "quoted-printable" |
48938
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
82 ;; (+ (? ?\n)) blank)) |
39516 | 83 ;; |
84 ;; (concat "^\\(?:" something-else "\\)") | |
85 ;; (rx (and line-start (eval something-else))), statically or | |
86 ;; (rx-to-string '(and line-start ,something-else)), dynamically. | |
87 ;; | |
88 ;; (regexp-opt '(STRING1 STRING2 ...)) | |
89 ;; (rx (or STRING1 STRING2 ...)), or in other words, `or' automatically | |
90 ;; calls `regexp-opt' as needed. | |
91 ;; | |
92 ;; "^;;\\s-*\n\\|^\n" | |
93 ;; (rx (or (and line-start ";;" (0+ space) ?\n) | |
94 ;; (and line-start ?\n))) | |
95 ;; | |
96 ;; "\\$[I]d: [^ ]+ \\([^ ]+\\) " | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
97 ;; (rx (and "$Id: " |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
98 ;; (1+ (not (in " "))) |
39516 | 99 ;; " " |
100 ;; (submatch (1+ (not (in " ")))) | |
48938
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
101 ;; " ")) |
39516 | 102 ;; |
103 ;; "\\\\\\\\\\[\\w+" | |
104 ;; (rx (and ?\\ ?\\ ?\[ (1+ word))) | |
105 ;; | |
106 ;; etc. | |
107 | |
108 ;;; History: | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
109 ;; |
39516 | 110 |
111 ;;; Code: | |
112 | |
113 (defconst rx-constituents | |
114 '((and . (rx-and 1 nil)) | |
55102 | 115 (seq . and) ; SRE |
116 (: . and) ; SRE | |
117 (sequence . and) ; sregex | |
39516 | 118 (or . (rx-or 1 nil)) |
55102 | 119 (| . or) ; SRE |
39516 | 120 (not-newline . ".") |
55102 | 121 (nonl . not-newline) ; SRE |
39516 | 122 (anything . ".\\|\n") |
55102 | 123 (any . (rx-any 1 nil rx-check-any)) ; inconsistent with SRE |
39516 | 124 (in . any) |
55102 | 125 (char . any) ; sregex |
126 (not-char . (rx-not-char 1 nil rx-check-any)) ; sregex | |
39516 | 127 (not . (rx-not 1 1 rx-check-not)) |
55102 | 128 ;; Partially consistent with sregex, whose `repeat' is like our |
129 ;; `**'. (`repeat' with optional max arg and multiple sexp forms | |
130 ;; is ambiguous.) | |
39516 | 131 (repeat . (rx-repeat 2 3)) |
55102 | 132 (= . (rx-= 2 nil)) ; SRE |
133 (>= . (rx->= 2 nil)) ; SRE | |
134 (** . (rx-** 2 nil)) ; SRE | |
135 (submatch . (rx-submatch 1 nil)) ; SRE | |
39516 | 136 (group . submatch) |
55102 | 137 (zero-or-more . (rx-kleene 1 nil)) |
138 (one-or-more . (rx-kleene 1 nil)) | |
139 (zero-or-one . (rx-kleene 1 nil)) | |
140 (\? . zero-or-one) ; SRE | |
39516 | 141 (\?? . zero-or-one) |
55102 | 142 (* . zero-or-more) ; SRE |
39516 | 143 (*? . zero-or-more) |
144 (0+ . zero-or-more) | |
55102 | 145 (+ . one-or-more) ; SRE |
39516 | 146 (+? . one-or-more) |
147 (1+ . one-or-more) | |
148 (optional . zero-or-one) | |
55102 | 149 (opt . zero-or-one) ; sregex |
39516 | 150 (minimal-match . (rx-greedy 1 1)) |
151 (maximal-match . (rx-greedy 1 1)) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
152 (backref . (rx-backref 1 1 rx-check-backref)) |
39516 | 153 (line-start . "^") |
55102 | 154 (bol . line-start) ; SRE |
39516 | 155 (line-end . "$") |
55102 | 156 (eol . line-end) ; SRE |
39516 | 157 (string-start . "\\`") |
55102 | 158 (bos . string-start) ; SRE |
159 (bot . string-start) ; sregex | |
39516 | 160 (string-end . "\\'") |
55102 | 161 (eos . string-end) ; SRE |
162 (eot . string-end) ; sregex | |
39516 | 163 (buffer-start . "\\`") |
164 (buffer-end . "\\'") | |
165 (point . "\\=") | |
166 (word-start . "\\<") | |
55102 | 167 (bow . word-start) ; SRE |
39516 | 168 (word-end . "\\>") |
55102 | 169 (eow . word-end) ; SRE |
39516 | 170 (word-boundary . "\\b") |
55102 | 171 (not-word-boundary . "\\B") ; sregex |
39516 | 172 (syntax . (rx-syntax 1 1)) |
55102 | 173 (not-syntax . (rx-not-syntax 1 1)) ; sregex |
39516 | 174 (category . (rx-category 1 1 rx-check-category)) |
175 (eval . (rx-eval 1 1)) | |
176 (regexp . (rx-regexp 1 1 stringp)) | |
177 (digit . "[[:digit:]]") | |
55102 | 178 (numeric . digit) ; SRE |
179 (num . digit) ; SRE | |
180 (control . "[[:cntrl:]]") ; SRE | |
181 (cntrl . control) ; SRE | |
182 (hex-digit . "[[:xdigit:]]") ; SRE | |
183 (hex . hex-digit) ; SRE | |
184 (xdigit . hex-digit) ; SRE | |
185 (blank . "[[:blank:]]") ; SRE | |
186 (graphic . "[[:graph:]]") ; SRE | |
187 (graph . graphic) ; SRE | |
188 (printing . "[[:print:]]") ; SRE | |
189 (print . printing) ; SRE | |
190 (alphanumeric . "[[:alnum:]]") ; SRE | |
191 (alnum . alphanumeric) ; SRE | |
39516 | 192 (letter . "[[:alpha:]]") |
55102 | 193 (alphabetic . letter) ; SRE |
194 (alpha . letter) ; SRE | |
195 (ascii . "[[:ascii:]]") ; SRE | |
39516 | 196 (nonascii . "[[:nonascii:]]") |
55102 | 197 (lower . "[[:lower:]]") ; SRE |
198 (lower-case . lower) ; SRE | |
199 (punctuation . "[[:punct:]]") ; SRE | |
200 (punct . punctuation) ; SRE | |
201 (space . "[[:space:]]") ; SRE | |
202 (whitespace . space) ; SRE | |
203 (white . space) ; SRE | |
204 (upper . "[[:upper:]]") ; SRE | |
205 (upper-case . upper) ; SRE | |
206 (word . "[[:word:]]") ; inconsistent with SRE | |
207 (wordchar . word) ; sregex | |
208 (not-wordchar . "[^[:word:]]") ; sregex (use \\W?) | |
209 ) | |
39516 | 210 "Alist of sexp form regexp constituents. |
211 Each element of the alist has the form (SYMBOL . DEFN). | |
212 SYMBOL is a valid constituent of sexp regular expressions. | |
213 If DEFN is a string, SYMBOL is translated into DEFN. | |
214 If DEFN is a symbol, use the definition of DEFN, recursively. | |
215 Otherwise, DEFN must be a list (FUNCTION MIN-ARGS MAX-ARGS PREDICATE). | |
216 FUNCTION is used to produce code for SYMBOL. MIN-ARGS and MAX-ARGS | |
217 are the minimum and maximum number of arguments the function-form | |
218 sexp constituent SYMBOL may have in sexp regular expressions. | |
219 MAX-ARGS nil means no limit. PREDICATE, if specified, means that | |
220 all arguments must satisfy PREDICATE.") | |
221 | |
222 | |
223 (defconst rx-syntax | |
224 '((whitespace . ?-) | |
225 (punctuation . ?.) | |
226 (word . ?w) | |
227 (symbol . ?_) | |
228 (open-parenthesis . ?\() | |
229 (close-parenthesis . ?\)) | |
230 (expression-prefix . ?\') | |
231 (string-quote . ?\") | |
232 (paired-delimiter . ?$) | |
233 (escape . ?\\) | |
234 (character-quote . ?/) | |
235 (comment-start . ?<) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
236 (comment-end . ?>) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
237 (string-delimiter . ?|) |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
238 (comment-delimiter . ?!)) |
39516 | 239 "Alist mapping Rx syntax symbols to syntax characters. |
240 Each entry has the form (SYMBOL . CHAR), where SYMBOL is a valid | |
241 symbol in `(syntax SYMBOL)', and CHAR is the syntax character | |
242 corresponding to SYMBOL, as it would be used with \\s or \\S in | |
243 regular expressions.") | |
244 | |
245 | |
246 (defconst rx-categories | |
247 '((consonant . ?0) | |
248 (base-vowel . ?1) | |
249 (upper-diacritical-mark . ?2) | |
250 (lower-diacritical-mark . ?3) | |
251 (tone-mark . ?4) | |
252 (symbol . ?5) | |
253 (digit . ?6) | |
254 (vowel-modifying-diacritical-mark . ?7) | |
255 (vowel-sign . ?8) | |
256 (semivowel-lower . ?9) | |
257 (not-at-end-of-line . ?<) | |
258 (not-at-beginning-of-line . ?>) | |
259 (alpha-numeric-two-byte . ?A) | |
260 (chinse-two-byte . ?C) | |
261 (greek-two-byte . ?G) | |
262 (japanese-hiragana-two-byte . ?H) | |
263 (indian-two-byte . ?I) | |
264 (japanese-katakana-two-byte . ?K) | |
265 (korean-hangul-two-byte . ?N) | |
266 (cyrillic-two-byte . ?Y) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
267 (combining-diacritic . ?^) |
39516 | 268 (ascii . ?a) |
269 (arabic . ?b) | |
270 (chinese . ?c) | |
271 (ethiopic . ?e) | |
272 (greek . ?g) | |
273 (korean . ?h) | |
274 (indian . ?i) | |
275 (japanese . ?j) | |
276 (japanese-katakana . ?k) | |
277 (latin . ?l) | |
278 (lao . ?o) | |
279 (tibetan . ?q) | |
280 (japanese-roman . ?r) | |
281 (thai . ?t) | |
282 (vietnamese . ?v) | |
283 (hebrew . ?w) | |
284 (cyrillic . ?y) | |
285 (can-break . ?|)) | |
286 "Alist mapping symbols to category characters. | |
287 Each entry has the form (SYMBOL . CHAR), where SYMBOL is a valid | |
288 symbol in `(category SYMBOL)', and CHAR is the category character | |
289 corresponding to SYMBOL, as it would be used with `\\c' or `\\C' in | |
290 regular expression strings.") | |
291 | |
292 | |
293 (defvar rx-greedy-flag t | |
294 "Non-nil means produce greedy regular expressions for `zero-or-one', | |
295 `zero-or-more', and `one-or-more'. Dynamically bound.") | |
296 | |
297 | |
298 (defun rx-info (op) | |
299 "Return parsing/code generation info for OP. | |
300 If OP is the space character ASCII 32, return info for the symbol `?'. | |
301 If OP is the character `?', return info for the symbol `??'. | |
302 See also `rx-constituents'." | |
303 (cond ((eq op ? ) (setq op '\?)) | |
304 ((eq op ??) (setq op '\??))) | |
305 (while (and (not (null op)) (symbolp op)) | |
306 (setq op (cdr (assq op rx-constituents)))) | |
307 op) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
308 |
39516 | 309 |
310 (defun rx-check (form) | |
311 "Check FORM according to its car's parsing info." | |
55102 | 312 (unless (listp form) |
313 (error "rx `%s' needs argument(s)" form)) | |
39516 | 314 (let* ((rx (rx-info (car form))) |
315 (nargs (1- (length form))) | |
316 (min-args (nth 1 rx)) | |
317 (max-args (nth 2 rx)) | |
318 (type-pred (nth 3 rx))) | |
319 (when (and (not (null min-args)) | |
320 (< nargs min-args)) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
321 (error "rx form `%s' requires at least %d args" |
39516 | 322 (car form) min-args)) |
323 (when (and (not (null max-args)) | |
324 (> nargs max-args)) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
325 (error "rx form `%s' accepts at most %d args" |
39516 | 326 (car form) max-args)) |
327 (when (not (null type-pred)) | |
328 (dolist (sub-form (cdr form)) | |
329 (unless (funcall type-pred sub-form) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
330 (error "rx form `%s' requires args satisfying `%s'" |
39516 | 331 (car form) type-pred)))))) |
332 | |
333 | |
334 (defun rx-and (form) | |
335 "Parse and produce code from FORM. | |
336 FORM is of the form `(and FORM1 ...)'." | |
337 (rx-check form) | |
48938
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
338 (concat "\\(?:" |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
339 (mapconcat |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
340 (function (lambda (x) (rx-to-string x 'no-group))) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
341 (cdr form) nil) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
342 "\\)")) |
39516 | 343 |
344 | |
345 (defun rx-or (form) | |
346 "Parse and produce code from FORM, which is `(or FORM1 ...)'." | |
347 (rx-check form) | |
348 (let ((all-args-strings t)) | |
349 (dolist (arg (cdr form)) | |
350 (unless (stringp arg) | |
351 (setq all-args-strings nil))) | |
52971
d5c1eeaa97e2
(rx-or): Fix the case of "(rx (and ?a (or ?b ?c) ?d))".
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
352 (concat "\\(?:" |
d5c1eeaa97e2
(rx-or): Fix the case of "(rx (and ?a (or ?b ?c) ?d))".
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
353 (if all-args-strings |
d5c1eeaa97e2
(rx-or): Fix the case of "(rx (and ?a (or ?b ?c) ?d))".
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
354 (regexp-opt (cdr form)) |
d5c1eeaa97e2
(rx-or): Fix the case of "(rx (and ?a (or ?b ?c) ?d))".
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
355 (mapconcat #'rx-to-string (cdr form) "\\|")) |
d5c1eeaa97e2
(rx-or): Fix the case of "(rx (and ?a (or ?b ?c) ?d))".
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
356 "\\)"))) |
39516 | 357 |
358 | |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
359 (defvar rx-bracket) ; dynamically bound in `rx-any' |
39516 | 360 |
361 (defun rx-check-any (arg) | |
362 "Check arg ARG for Rx `any'." | |
55102 | 363 (if (integerp arg) |
364 (setq arg (string arg))) | |
365 (when (stringp arg) | |
366 (if (zerop (length arg)) | |
367 (error "String arg for Rx `any' must not be empty")) | |
368 ;; Quote ^ at start; don't bother to check whether this is first arg. | |
369 (if (eq ?^ (aref arg 0)) | |
370 (setq arg (concat "\\" arg))) | |
371 ;; Remove ] and set flag for adding it to start of overall result. | |
372 (when (string-match "]" arg) | |
373 (setq arg (replace-regexp-in-string "]" "" arg) | |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
374 rx-bracket "]"))) |
55102 | 375 (when (symbolp arg) |
376 (let ((translation (condition-case nil | |
377 (rx-to-string arg 'no-group) | |
378 (error nil)))) | |
379 (unless translation (error "Invalid char class `%s' in Rx `any'" arg)) | |
380 (setq arg (substring translation 1 -1)))) ; strip outer brackets | |
381 ;; sregex compatibility | |
382 (when (and (integerp (car-safe arg)) | |
383 (integerp (cdr-safe arg))) | |
384 (setq arg (string (car arg) ?- (cdr arg)))) | |
385 (unless (stringp arg) | |
386 (error "rx `any' requires string, character, char pair or char class args")) | |
387 arg) | |
39516 | 388 |
389 (defun rx-any (form) | |
55102 | 390 "Parse and produce code from FORM, which is `(any ARG ...)'. |
391 ARG is optional." | |
39516 | 392 (rx-check form) |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
393 (let* ((rx-bracket nil) |
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
394 (args (mapcar #'rx-check-any (cdr form)))) ; side-effects `rx-bracket' |
55102 | 395 ;; If there was a ?- in the form, move it to the front to avoid |
396 ;; accidental range. | |
397 (if (member "-" args) | |
398 (setq args (cons "-" (delete "-" args)))) | |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
399 (apply #'concat "[" rx-bracket (append args '("]"))))) |
39516 | 400 |
401 | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
402 (defun rx-check-not (arg) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
403 "Check arg ARG for Rx `not'." |
55102 | 404 (unless (or (and (symbolp arg) |
405 (string-match "\\`\\[\\[:[-a-z]:]]\\'" | |
406 (condition-case nil | |
407 (rx-to-string arg 'no-group) | |
408 (error "")))) | |
409 (eq arg 'word-boundary) | |
410 (and (consp arg) | |
411 (memq (car arg) '(not any in syntax category)))) | |
412 (error "rx `not' syntax error: %s" arg)) | |
413 t) | |
39516 | 414 |
415 | |
416 (defun rx-not (form) | |
417 "Parse and produce code from FORM. FORM is `(not ...)'." | |
418 (rx-check form) | |
53974
818e19ae4c5a
(rx-not): Bind case-fold-search to nil.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52971
diff
changeset
|
419 (let ((result (rx-to-string (cadr form) 'no-group)) |
818e19ae4c5a
(rx-not): Bind case-fold-search to nil.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
52971
diff
changeset
|
420 case-fold-search) |
39516 | 421 (cond ((string-match "\\`\\[^" result) |
422 (if (= (length result) 4) | |
423 (substring result 2 3) | |
424 (concat "[" (substring result 2)))) | |
55102 | 425 ((eq ?\[ (aref result 0)) |
39516 | 426 (concat "[^" (substring result 1))) |
55102 | 427 ((string-match "\\`\\\\[scb]" result) |
428 (concat (capitalize (substring result 0 2)) (substring result 2))) | |
39516 | 429 (t |
430 (concat "[^" result "]"))))) | |
431 | |
432 | |
55102 | 433 (defun rx-not-char (form) |
434 "Parse and produce code from FORM. FORM is `(not-char ...)'." | |
435 (rx-check form) | |
436 (rx-not `(not (in ,@(cdr form))))) | |
437 | |
438 | |
439 (defun rx-not-syntax (form) | |
440 "Parse and produce code from FORM. FORM is `(not-syntax SYNTAX)'." | |
441 (rx-check form) | |
442 (rx-not `(not (syntax ,@(cdr form))))) | |
443 | |
444 | |
445 (defun rx-trans-forms (form &optional skip) | |
446 "If FORM's length is greater than two, transform it to length two. | |
447 A form (HEAD REST ...) becomes (HEAD (and REST ...)). | |
448 If SKIP is non-nil, allow that number of items after the head, i.e. | |
449 `(= N REST ...)' becomes `(= N (and REST ...))' if SKIP is 1." | |
450 (unless skip (setq skip 0)) | |
451 (let ((tail (nthcdr (1+ skip) form))) | |
452 (if (= (length tail) 1) | |
453 form | |
454 (let ((form (copy-sequence form))) | |
455 (setcdr (nthcdr skip form) (list (cons 'and tail))) | |
456 form)))) | |
457 | |
458 | |
459 (defun rx-= (form) | |
460 "Parse and produce code from FORM `(= N ...)'." | |
461 (rx-check form) | |
462 (setq form (rx-trans-forms form 1)) | |
463 (unless (and (integerp (nth 1 form)) | |
464 (> (nth 1 form) 0)) | |
465 (error "rx `=' requires positive integer first arg")) | |
466 (format "%s\\{%d\\}" (rx-to-string (nth 2 form)) (nth 1 form))) | |
467 | |
468 | |
469 (defun rx->= (form) | |
470 "Parse and produce code from FORM `(>= N ...)'." | |
471 (rx-check form) | |
472 (setq form (rx-trans-forms form 1)) | |
473 (unless (and (integerp (nth 1 form)) | |
474 (> (nth 1 form) 0)) | |
475 (error "rx `>=' requires positive integer first arg")) | |
476 (format "%s\\{%d,\\}" (rx-to-string (nth 2 form)) (nth 1 form))) | |
477 | |
478 | |
479 (defun rx-** (form) | |
480 "Parse and produce code from FORM `(** N M ...)'." | |
481 (rx-check form) | |
482 (setq form (cons 'repeat (cdr (rx-trans-forms form 2)))) | |
483 (rx-to-string form)) | |
484 | |
485 | |
39516 | 486 (defun rx-repeat (form) |
487 "Parse and produce code from FORM. | |
488 FORM is either `(repeat N FORM1)' or `(repeat N M FORM1)'." | |
489 (rx-check form) | |
490 (cond ((= (length form) 3) | |
491 (unless (and (integerp (nth 1 form)) | |
492 (> (nth 1 form) 0)) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
493 (error "rx `repeat' requires positive integer first arg")) |
39516 | 494 (format "%s\\{%d\\}" (rx-to-string (nth 2 form)) (nth 1 form))) |
495 ((or (not (integerp (nth 2 form))) | |
496 (< (nth 2 form) 0) | |
497 (not (integerp (nth 1 form))) | |
498 (< (nth 1 form) 0) | |
499 (< (nth 2 form) (nth 1 form))) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
500 (error "rx `repeat' range error")) |
39516 | 501 (t |
502 (format "%s\\{%d,%d\\}" (rx-to-string (nth 3 form)) | |
503 (nth 1 form) (nth 2 form))))) | |
504 | |
505 | |
506 (defun rx-submatch (form) | |
507 "Parse and produce code from FORM, which is `(submatch ...)'." | |
48938
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
508 (concat "\\(" |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
509 (mapconcat (function (lambda (x) (rx-to-string x 'no-group))) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
510 (cdr form) nil) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
511 "\\)")) |
39516 | 512 |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
513 (defun rx-backref (form) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
514 "Parse and produce code from FORM, which is `(backref N)'." |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
515 (rx-check form) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
516 (format "\\%d" (nth 1 form))) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
517 |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
518 (defun rx-check-backref (arg) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
519 "Check arg ARG for Rx `backref'." |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
520 (or (and (integerp arg) (>= arg 1) (<= arg 9)) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
521 (error "rx `backref' requires numeric 1<=arg<=9: %s" arg))) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
522 |
39516 | 523 (defun rx-kleene (form) |
524 "Parse and produce code from FORM. | |
525 FORM is `(OP FORM1)', where OP is one of the `zero-or-one', | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
526 `zero-or-more' etc. operators. |
39516 | 527 If OP is one of `*', `+', `?', produce a greedy regexp. |
528 If OP is one of `*?', `+?', `??', produce a non-greedy regexp. | |
529 If OP is anything else, produce a greedy regexp if `rx-greedy-flag' | |
530 is non-nil." | |
531 (rx-check form) | |
55102 | 532 (setq form (rx-trans-forms form)) |
39516 | 533 (let ((suffix (cond ((memq (car form) '(* + ? )) "") |
534 ((memq (car form) '(*? +? ??)) "?") | |
535 (rx-greedy-flag "") | |
536 (t "?"))) | |
537 (op (cond ((memq (car form) '(* *? 0+ zero-or-more)) "*") | |
538 ((memq (car form) '(+ +? 1+ one-or-more)) "+") | |
48938
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
539 (t "?"))) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
540 (result (rx-to-string (cadr form) 'no-group))) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
541 (if (not (rx-atomic-p result)) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
542 (setq result (concat "\\(?:" result "\\)"))) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
543 (concat result op suffix))) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
544 |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
545 (defun rx-atomic-p (r) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
546 "Return non-nil if regexp string R is atomic. |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
547 An atomic regexp R is one such that a suffix operator |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
548 appended to R will apply to all of R. For example, \"a\" |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
549 \"[abc]\" and \"\\(ab\\|ab*c\\)\" are atomic and \"ab\", |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
550 \"[ab]c\", and \"ab\\|ab*c\" are not atomic. |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
551 |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
552 This function may return false negatives, but it will not |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
553 return false positives. It is nevertheless useful in |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
554 situations where an efficiency shortcut can be taken iff a |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
555 regexp is atomic. The function can be improved to detect |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
556 more cases of atomic regexps. Presently, this function |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
557 detects the following categories of atomic regexp; |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
558 |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
559 a group or shy group: \\(...\\) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
560 a character class: [...] |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
561 a single character: a |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
562 |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
563 On the other hand, false negatives will be returned for |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
564 regexps that are atomic but end in operators, such as |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
565 \"a+\". I think these are rare. Probably such cases could |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
566 be detected without much effort. A guarantee of no false |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
567 negatives would require a theoretic specification of the set |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
568 of all atomic regexps." |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
569 (let ((l (length r))) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
570 (or (equal l 1) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
571 (and (>= l 6) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
572 (equal (substring r 0 2) "\\(") |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
573 (equal (substring r -2) "\\)")) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
574 (and (>= l 2) |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
575 (equal (substring r 0 1) "[") |
05f00479612c
(rx-and): Generate a shy group.
Richard M. Stallman <rms@gnu.org>
parents:
47257
diff
changeset
|
576 (equal (substring r -1) "]"))))) |
39516 | 577 |
578 | |
579 (defun rx-syntax (form) | |
580 "Parse and produce code from FORM, which is `(syntax SYMBOL)'." | |
581 (rx-check form) | |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
582 (let* ((sym (cadr form)) |
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
583 (syntax (assq sym rx-syntax))) |
39516 | 584 (unless syntax |
55103
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
585 ;; Try sregex compatibility. |
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
586 (let ((name (symbol-name sym))) |
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
587 (if (= 1 (length name)) |
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
588 (setq syntax (rassq (aref name 0) rx-syntax)))) |
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
589 (unless syntax |
93f6ab2a0eb5
(rx-syntax): Move sregex style syntax to code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55102
diff
changeset
|
590 (error "Unknown rx syntax `%s'" (cadr form)))) |
39516 | 591 (format "\\s%c" (cdr syntax)))) |
592 | |
593 | |
594 (defun rx-check-category (form) | |
595 "Check the argument FORM of a `(category FORM)'." | |
596 (unless (or (integerp form) | |
597 (cdr (assq form rx-categories))) | |
598 (error "Unknown category `%s'" form)) | |
599 t) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
600 |
39516 | 601 |
602 (defun rx-category (form) | |
55102 | 603 "Parse and produce code from FORM, which is `(category SYMBOL)'." |
39516 | 604 (rx-check form) |
605 (let ((char (if (integerp (cadr form)) | |
606 (cadr form) | |
607 (cdr (assq (cadr form) rx-categories))))) | |
608 (format "\\c%c" char))) | |
609 | |
610 | |
611 (defun rx-eval (form) | |
612 "Parse and produce code from FORM, which is `(eval FORM)'." | |
613 (rx-check form) | |
614 (rx-to-string (eval (cadr form)))) | |
615 | |
616 | |
617 (defun rx-greedy (form) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
618 "Parse and produce code from FORM. |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
619 If FORM is '(minimal-match FORM1)', non-greedy versions of `*', |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
620 `+', and `?' operators will be used in FORM1. If FORM is |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
621 '(maximal-match FORM1)', greedy operators will be used." |
39516 | 622 (rx-check form) |
623 (let ((rx-greedy-flag (eq (car form) 'maximal-match))) | |
624 (rx-to-string (cadr form)))) | |
625 | |
626 | |
627 (defun rx-regexp (form) | |
628 "Parse and produce code from FORM, which is `(regexp STRING)'." | |
629 (rx-check form) | |
630 (concat "\\(?:" (cadr form) "\\)")) | |
631 | |
632 | |
633 ;;;###autoload | |
634 (defun rx-to-string (form &optional no-group) | |
635 "Parse and produce code for regular expression FORM. | |
636 FORM is a regular expression in sexp form. | |
637 NO-GROUP non-nil means don't put shy groups around the result." | |
638 (cond ((stringp form) | |
639 (regexp-quote form)) | |
640 ((integerp form) | |
641 (regexp-quote (char-to-string form))) | |
642 ((symbolp form) | |
643 (let ((info (rx-info form))) | |
644 (cond ((stringp info) | |
645 info) | |
646 ((null info) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
647 (error "Unknown rx form `%s'" form)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
648 (t |
39516 | 649 (funcall (nth 0 info) form))))) |
650 ((consp form) | |
651 (let ((info (rx-info (car form)))) | |
652 (unless (consp info) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
653 (error "Unknown rx form `%s'" (car form))) |
39516 | 654 (let ((result (funcall (nth 0 info) form))) |
655 (if (or no-group (string-match "\\`\\\\[(]" result)) | |
656 result | |
657 (concat "\\(?:" result "\\)"))))) | |
658 (t | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
659 (error "rx syntax error at `%s'" form)))) |
39516 | 660 |
661 | |
662 ;;;###autoload | |
55102 | 663 (defmacro rx (&rest regexps) |
664 "Translate regular expressions REGEXPS in sexp form to a regexp string. | |
665 REGEXPS is a non-empty sequence of forms of the sort listed below. | |
39516 | 666 See also `rx-to-string' for how to do such a translation at run-time. |
667 | |
668 The following are valid subforms of regular expressions in sexp | |
669 notation. | |
670 | |
671 STRING | |
672 matches string STRING literally. | |
673 | |
674 CHAR | |
675 matches character CHAR literally. | |
676 | |
55102 | 677 `not-newline', `nonl' |
39516 | 678 matches any character except a newline. |
679 . | |
680 `anything' | |
681 matches any character | |
682 | |
55102 | 683 `(any SET ...)' |
684 `(in SET ...)' | |
685 `(char SET ...)' | |
686 matches any character in SET .... SET may be a character or string. | |
39516 | 687 Ranges of characters can be specified as `A-Z' in strings. |
55102 | 688 Ranges may also be specified as conses like `(?A . ?Z)'. |
39516 | 689 |
55102 | 690 SET may also be the name of a character class: `digit', |
691 `control', `hex-digit', `blank', `graph', `print', `alnum', | |
692 `alpha', `ascii', `nonascii', `lower', `punct', `space', `upper', | |
693 `word', or one of their synonyms. | |
39516 | 694 |
55102 | 695 `(not (any SET ...))' |
696 matches any character not in SET ... | |
39516 | 697 |
55102 | 698 `line-start', `bol' |
39516 | 699 matches the empty string, but only at the beginning of a line |
700 in the text being matched | |
701 | |
55102 | 702 `line-end', `eol' |
39516 | 703 is similar to `line-start' but matches only at the end of a line |
704 | |
55102 | 705 `string-start', `bos', `bot' |
39516 | 706 matches the empty string, but only at the beginning of the |
707 string being matched against. | |
708 | |
55102 | 709 `string-end', `eos', `eot' |
39516 | 710 matches the empty string, but only at the end of the |
711 string being matched against. | |
712 | |
713 `buffer-start' | |
714 matches the empty string, but only at the beginning of the | |
55102 | 715 buffer being matched against. Actually equivalent to `string-start'. |
39516 | 716 |
717 `buffer-end' | |
718 matches the empty string, but only at the end of the | |
55102 | 719 buffer being matched against. Actually equivalent to `string-end'. |
39516 | 720 |
721 `point' | |
722 matches the empty string, but only at point. | |
723 | |
55102 | 724 `word-start', `bow' |
39516 | 725 matches the empty string, but only at the beginning or end of a |
726 word. | |
727 | |
55102 | 728 `word-end', `eow' |
39516 | 729 matches the empty string, but only at the end of a word. |
730 | |
731 `word-boundary' | |
732 matches the empty string, but only at the beginning or end of a | |
733 word. | |
734 | |
735 `(not word-boundary)' | |
55102 | 736 `not-word-boundary' |
39516 | 737 matches the empty string, but not at the beginning or end of a |
738 word. | |
739 | |
55102 | 740 `digit', `numeric', `num' |
39516 | 741 matches 0 through 9. |
742 | |
55102 | 743 `control', `cntrl' |
39516 | 744 matches ASCII control characters. |
745 | |
55102 | 746 `hex-digit', `hex', `xdigit' |
39516 | 747 matches 0 through 9, a through f and A through F. |
748 | |
749 `blank' | |
750 matches space and tab only. | |
751 | |
55102 | 752 `graphic', `graph' |
39516 | 753 matches graphic characters--everything except ASCII control chars, |
754 space, and DEL. | |
755 | |
55102 | 756 `printing', `print' |
39516 | 757 matches printing characters--everything except ASCII control chars |
758 and DEL. | |
759 | |
55102 | 760 `alphanumeric', `alnum' |
39516 | 761 matches letters and digits. (But at present, for multibyte characters, |
762 it matches anything that has word syntax.) | |
763 | |
55102 | 764 `letter', `alphabetic', `alpha' |
39516 | 765 matches letters. (But at present, for multibyte characters, |
766 it matches anything that has word syntax.) | |
767 | |
768 `ascii' | |
769 matches ASCII (unibyte) characters. | |
770 | |
771 `nonascii' | |
772 matches non-ASCII (multibyte) characters. | |
773 | |
55102 | 774 `lower', `lower-case' |
39516 | 775 matches anything lower-case. |
776 | |
55102 | 777 `upper', `upper-case' |
39516 | 778 matches anything upper-case. |
779 | |
55102 | 780 `punctuation', `punct' |
39516 | 781 matches punctuation. (But at present, for multibyte characters, |
782 it matches anything that has non-word syntax.) | |
783 | |
55102 | 784 `space', `whitespace', `white' |
39516 | 785 matches anything that has whitespace syntax. |
786 | |
55102 | 787 `word', `wordchar' |
39516 | 788 matches anything that has word syntax. |
789 | |
55102 | 790 `not-wordchar' |
791 matches anything that has non-word syntax. | |
792 | |
39516 | 793 `(syntax SYNTAX)' |
794 matches a character with syntax SYNTAX. SYNTAX must be one | |
55102 | 795 of the following symbols, or a symbol corresponding to the syntax |
796 character, e.g. `\\.' for `\\s.'. | |
39516 | 797 |
798 `whitespace' (\\s- in string notation) | |
799 `punctuation' (\\s.) | |
800 `word' (\\sw) | |
801 `symbol' (\\s_) | |
802 `open-parenthesis' (\\s() | |
803 `close-parenthesis' (\\s)) | |
804 `expression-prefix' (\\s') | |
805 `string-quote' (\\s\") | |
806 `paired-delimiter' (\\s$) | |
807 `escape' (\\s\\) | |
808 `character-quote' (\\s/) | |
809 `comment-start' (\\s<) | |
810 `comment-end' (\\s>) | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
811 `string-delimiter' (\\s|) |
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
812 `comment-delimiter' (\\s!) |
39516 | 813 |
814 `(not (syntax SYNTAX))' | |
55102 | 815 matches a character that doesn't have syntax SYNTAX. |
39516 | 816 |
817 `(category CATEGORY)' | |
818 matches a character with category CATEGORY. CATEGORY must be | |
819 either a character to use for C, or one of the following symbols. | |
820 | |
821 `consonant' (\\c0 in string notation) | |
822 `base-vowel' (\\c1) | |
823 `upper-diacritical-mark' (\\c2) | |
824 `lower-diacritical-mark' (\\c3) | |
825 `tone-mark' (\\c4) | |
826 `symbol' (\\c5) | |
827 `digit' (\\c6) | |
828 `vowel-modifying-diacritical-mark' (\\c7) | |
829 `vowel-sign' (\\c8) | |
830 `semivowel-lower' (\\c9) | |
831 `not-at-end-of-line' (\\c<) | |
832 `not-at-beginning-of-line' (\\c>) | |
833 `alpha-numeric-two-byte' (\\cA) | |
834 `chinse-two-byte' (\\cC) | |
835 `greek-two-byte' (\\cG) | |
836 `japanese-hiragana-two-byte' (\\cH) | |
837 `indian-tow-byte' (\\cI) | |
838 `japanese-katakana-two-byte' (\\cK) | |
839 `korean-hangul-two-byte' (\\cN) | |
840 `cyrillic-two-byte' (\\cY) | |
55102 | 841 `combining-diacritic' (\\c^) |
39516 | 842 `ascii' (\\ca) |
843 `arabic' (\\cb) | |
844 `chinese' (\\cc) | |
845 `ethiopic' (\\ce) | |
846 `greek' (\\cg) | |
847 `korean' (\\ch) | |
848 `indian' (\\ci) | |
849 `japanese' (\\cj) | |
850 `japanese-katakana' (\\ck) | |
851 `latin' (\\cl) | |
852 `lao' (\\co) | |
853 `tibetan' (\\cq) | |
854 `japanese-roman' (\\cr) | |
855 `thai' (\\ct) | |
856 `vietnamese' (\\cv) | |
857 `hebrew' (\\cw) | |
858 `cyrillic' (\\cy) | |
859 `can-break' (\\c|) | |
860 | |
861 `(not (category CATEGORY))' | |
55102 | 862 matches a character that doesn't have category CATEGORY. |
39516 | 863 |
864 `(and SEXP1 SEXP2 ...)' | |
55102 | 865 `(: SEXP1 SEXP2 ...)' |
866 `(seq SEXP1 SEXP2 ...)' | |
867 `(sequence SEXP1 SEXP2 ...)' | |
39516 | 868 matches what SEXP1 matches, followed by what SEXP2 matches, etc. |
869 | |
870 `(submatch SEXP1 SEXP2 ...)' | |
55102 | 871 `(group SEXP1 SEXP2 ...)' |
39516 | 872 like `and', but makes the match accessible with `match-end', |
873 `match-beginning', and `match-string'. | |
874 | |
875 `(group SEXP1 SEXP2 ...)' | |
876 another name for `submatch'. | |
877 | |
878 `(or SEXP1 SEXP2 ...)' | |
55102 | 879 `(| SEXP1 SEXP2 ...)' |
39516 | 880 matches anything that matches SEXP1 or SEXP2, etc. If all |
881 args are strings, use `regexp-opt' to optimize the resulting | |
882 regular expression. | |
883 | |
884 `(minimal-match SEXP)' | |
885 produce a non-greedy regexp for SEXP. Normally, regexps matching | |
53992
c5c237251824
(rx-check, rx-check-any, rx-check-not)
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53974
diff
changeset
|
886 zero or more occurrences of something are \"greedy\" in that they |
39516 | 887 match as much as they can, as long as the overall regexp can |
888 still match. A non-greedy regexp matches as little as possible. | |
889 | |
890 `(maximal-match SEXP)' | |
47257 | 891 produce a greedy regexp for SEXP. This is the default. |
39516 | 892 |
55102 | 893 Below, `SEXP ...' represents a sequence of regexp forms, treated as if |
894 enclosed in `(and ...)'. | |
39516 | 895 |
55102 | 896 `(zero-or-more SEXP ...)' |
897 `(0+ SEXP ...)' | |
898 matches zero or more occurrences of what SEXP ... matches. | |
39516 | 899 |
55102 | 900 `(* SEXP ...)' |
901 like `zero-or-more', but always produces a greedy regexp, independent | |
902 of `rx-greedy-flag'. | |
39516 | 903 |
55102 | 904 `(*? SEXP ...)' |
905 like `zero-or-more', but always produces a non-greedy regexp, | |
906 independent of `rx-greedy-flag'. | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
907 |
55102 | 908 `(one-or-more SEXP ...)' |
909 `(1+ SEXP ...)' | |
910 matches one or more occurrences of SEXP ... | |
39516 | 911 |
55102 | 912 `(+ SEXP ...)' |
39516 | 913 like `one-or-more', but always produces a greedy regexp. |
914 | |
55102 | 915 `(+? SEXP ...)' |
39516 | 916 like `one-or-more', but always produces a non-greedy regexp. |
917 | |
55102 | 918 `(zero-or-one SEXP ...)' |
919 `(optional SEXP ...)' | |
920 `(opt SEXP ...)' | |
39516 | 921 matches zero or one occurrences of A. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48938
diff
changeset
|
922 |
55102 | 923 `(? SEXP ...)' |
39516 | 924 like `zero-or-one', but always produces a greedy regexp. |
925 | |
55102 | 926 `(?? SEXP ...)' |
39516 | 927 like `zero-or-one', but always produces a non-greedy regexp. |
928 | |
929 `(repeat N SEXP)' | |
55102 | 930 `(= N SEXP ...)' |
931 matches N occurrences. | |
932 | |
933 `(>= N SEXP ...)' | |
934 matches N or more occurrences. | |
39516 | 935 |
936 `(repeat N M SEXP)' | |
55102 | 937 `(** N M SEXP ...)' |
938 matches N to M occurrences. | |
939 | |
940 `(backref N)' | |
941 matches what was matched previously by submatch N. | |
39516 | 942 |
54461
5c8be4779a36
(rx): Work at compile time, not run time.
Juanma Barranquero <lekktu@gmail.com>
parents:
53992
diff
changeset
|
943 `(backref N)' |
5c8be4779a36
(rx): Work at compile time, not run time.
Juanma Barranquero <lekktu@gmail.com>
parents:
53992
diff
changeset
|
944 matches what was matched previously by submatch N. |
5c8be4779a36
(rx): Work at compile time, not run time.
Juanma Barranquero <lekktu@gmail.com>
parents:
53992
diff
changeset
|
945 |
54601
d2d20534e329
(rx): Work at compile time, not run time.
Eli Zaretskii <eliz@gnu.org>
parents:
54503
diff
changeset
|
946 `(backref N)' |
d2d20534e329
(rx): Work at compile time, not run time.
Eli Zaretskii <eliz@gnu.org>
parents:
54503
diff
changeset
|
947 matches what was matched previously by submatch N. |
d2d20534e329
(rx): Work at compile time, not run time.
Eli Zaretskii <eliz@gnu.org>
parents:
54503
diff
changeset
|
948 |
39516 | 949 `(eval FORM)' |
54461
5c8be4779a36
(rx): Work at compile time, not run time.
Juanma Barranquero <lekktu@gmail.com>
parents:
53992
diff
changeset
|
950 evaluate FORM and insert result. If result is a string, |
5c8be4779a36
(rx): Work at compile time, not run time.
Juanma Barranquero <lekktu@gmail.com>
parents:
53992
diff
changeset
|
951 `regexp-quote' it. |
39516 | 952 |
953 `(regexp REGEXP)' | |
54461
5c8be4779a36
(rx): Work at compile time, not run time.
Juanma Barranquero <lekktu@gmail.com>
parents:
53992
diff
changeset
|
954 include REGEXP in string notation in the result." |
55102 | 955 (cond ((null regexps) |
956 (error "No regexp")) | |
957 ((cdr regexps) | |
958 (rx-to-string `(and ,@regexps) t)) | |
959 (t | |
960 (rx-to-string (car regexps) t)))) | |
961 | |
962 ;; ;; sregex.el replacement | |
39516 | 963 |
55102 | 964 ;; ;;;###autoload (provide 'sregex) |
965 ;; ;;;###autoload (autoload 'sregex "rx") | |
966 ;; (defalias 'sregex 'rx-to-string) | |
967 ;; ;;;###autoload (autoload 'sregexq "rx" nil nil 'macro) | |
968 ;; (defalias 'sregexq 'rx) | |
969 | |
39516 | 970 (provide 'rx) |
971 | |
52401 | 972 ;;; arch-tag: 12d01a63-0008-42bb-ab8c-1c7d63be370b |
39516 | 973 ;;; rx.el ends here |