QUOTEDIDENTIFIER

A double-quote-delimited identifier. Allows any character sequence, including spaces and reserved words, to serve as an identifier. Supports the same escape sequences as string literals.

Examples

Quoted identifier for a named expression

"Measurement Period"

Quoted identifier for a value set

"Diabetes Mellitus Conditions"

Quoted identifier in a retrieve

[Condition: "Hypertension Value Set"]
Railroad Diagram
100%
" ESC any character "

scroll to zoom · drag to pan · click green rules or blue tokens to navigate

EBNF

QUOTEDIDENTIFIER
  : '"' (ESC | .)*? '"'
  ;

Used In