b* binder for regular expression matching.
Match a string against a regular expression and optionally bind the matching portion to a variable and the substring matches to other variables.
The way to tell if the string matched is to check whether the variable for the full match is set to a non-nil value (which then must be a string).
Syntax:
(b* (((match my-regex :e ;; extended regex (default), or :b for basic, :f for fixed string :i ;; denotes case insensitive match :full matchvar ;; (optional) bind matchvar to the substring matching the full regex :substrs (a b) ;; (optional) bind a and b to the substring matches (ordered) :error-msg errvar ;; (optional) bind any error message from parsing the regex to errvar ) string-to-match) ((unless matchvar) ;; did not match ...)) (list matchvar a b))
If my-regex is a literal string, then the regular expression will be parsed
at macroexpansion time, and matching will be done at runtime with do-regex-match-precomp; otherwise, the parsing and matching are both done at
runtime with do-regex-match. The