Variable: thing-at-point-uuid-regexp

thing-at-point-uuid-regexp is a variable defined in thingatpt.el.gz.

Value

"\\<[[:xdigit:]]\\{8\\}-[[:xdigit:]]\\{4\\}-[[:xdigit:]]\\{4\\}-[[:xdigit:]]\\{4\\}-[[:xdigit:]]\\{12\\}\\>"

Documentation

A regular expression matching a UUID.

See RFC 4122 for the description of the format.

Source Code

;; Defined in /usr/src/emacs/lisp/thingatpt.el.gz
;; UUID

(defconst thing-at-point-uuid-regexp
  (rx bow
      (repeat 8 hex-digit) "-"
      (repeat 4 hex-digit) "-"
      (repeat 4 hex-digit) "-"
      (repeat 4 hex-digit) "-"
      (repeat 12 hex-digit)
      eow)
  "A regular expression matching a UUID.
See RFC 4122 for the description of the format.")