Function: denote-extract-id-from-string
denote-extract-id-from-string is a byte-compiled function defined in
denote.el.
Signature
(denote-extract-id-from-string STRING)
Documentation
Return existing Denote identifier in STRING, else nil.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-extract-id-from-string (string)
"Return existing Denote identifier in STRING, else nil."
(when (string-match denote-date-identifier-regexp string)
(match-string-no-properties 0 string)))