summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/string.fin
blob: a02f8525fdd6ad54cc71af090d28491257b820ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Quoted STRING
\"[^\"]*\" {set yylval [string range $yytext 1 end-1]; return $STRING_}

# Quoted STRING
\'[^\']*\' {set yylval [string range $yytext 1 end-1]; return $STRING_}

# Quoted STRING
\{[^\}]*\} {set yylval [string range $yytext 1 end-1]; return $STRING_}

# STRING
\S+\S+ {set yylval $yytext; return $STRING_}