Variable: org-keyword-time-regexp

org-keyword-time-regexp is a variable defined in org.el.gz.

Value

"\\<\\(\\(?:CLO\\(?:CK\\|SED\\)\\|DEADLINE\\|SCHEDULED\\):\\) *[[<]\\([^]>]+\\)[]>]"

Documentation

Matches any of the 4 keywords, together with the time stamp.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-keyword-time-regexp
  (concat "\\<"
	  (regexp-opt
	   (list org-scheduled-string org-deadline-string org-closed-string
		 org-clock-string)
	   t)
	  " *[[<]\\([^]>]+\\)[]>]")
  "Matches any of the 4 keywords, together with the time stamp.")