Skip to content

Instantly share code, notes, and snippets.

@xilin
Created January 6, 2014 03:34
Show Gist options
  • Save xilin/8277815 to your computer and use it in GitHub Desktop.
Save xilin/8277815 to your computer and use it in GitHub Desktop.
Common Regex Rules
terminal ID : ('^')?('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'_'|'0'..'9')*;
terminal STRING :
'"' ( '\\' ('b'|'t'|'n'|'f'|'r'|'u'|'"'|"'"|'\\') | !('\\'|'"') )* '"' |
"'" ( '\\' ('b'|'t'|'n'|'f'|'r'|'u'|'"'|"'"|'\\') | !('\\'|"'") )* "'"
;
terminal ML_COMMENT : '/*' -> '*/';
terminal SL_COMMENT : '//' !('\n'|'\r')* ('\r'? '\n')?;
terminal WS : (' '|'\t'|'\r'|'\n')+;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment