Variable: thing-at-point-email-regexp
thing-at-point-email-regexp is a variable defined in thingatpt.el.gz.
Value
"<?[-+_~a-zA-Z0-9/][-+_.~:a-zA-Z0-9/]*@[-a-zA-Z0-9]+[-.a-zA-Z0-9]*>?"
Documentation
A regular expression probably matching an email address.
This does not match the real name portion, only the address, optionally with angle brackets.
Source Code
;; Defined in /usr/src/emacs/lisp/thingatpt.el.gz
;; Email addresses
(defvar thing-at-point-email-regexp
"<?[-+_~a-zA-Z0-9/][-+_.~:a-zA-Z0-9/]*@[-a-zA-Z0-9]+[-.a-zA-Z0-9]*>?"
"A regular expression probably matching an email address.
This does not match the real name portion, only the address, optionally
with angle brackets.")