Variable: org-heading-keyword-maybe-regexp-format
org-heading-keyword-maybe-regexp-format is a variable defined in
org.el.gz.
Value
"^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ ]*$"
Documentation
Printf format for a regexp matching a headline, possibly with some keyword.
This regexp can match any headline with the specified keyword, or without a keyword. The keyword isn't in any group by default, but the stars and the body are.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-heading-keyword-maybe-regexp-format
"^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
"Printf format for a regexp matching a headline, possibly with some keyword.
This regexp can match any headline with the specified keyword, or
without a keyword. The keyword isn't in any group by default,
but the stars and the body are.")