Variable: org-ts-regexp1

org-ts-regexp1 is a variable defined in org.el.gz.

Value

"\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\(?: *\\([^]+0-9>
\n -]+\\)\\)?\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"

Documentation

Regular expression matching time strings for analysis.

This regular expression provides the following groups:
  1: everything (required for embedding)
   2: year
   3: month
   4: day
   5: weekday name (optional)
   6: time part (optional)
    7: hour
    8: minute

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\(?: *\\([^]+0-9>\r\n -]+\\)\\)?\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
  "Regular expression matching time strings for analysis.
This regular expression provides the following groups:
  1:   everything (required for embedding)
   2:  year
   3:  month
   4:  day
   5:  weekday name (optional)
   6:  time part (optional)
    7: hour
    8: minute")