DIGIT_CHARS = (48..57)+;
TAG_CHARS = (33 | 35..36 | 38..39 | 44..91 | 93..122 | 124..126)+;
ATOM_CHARS = (33 | 35..36 | 38..39 | 42 | 44..61 | 63..90 | 92 | 94..122 | 124..126)+;
SP = ' ';
CR = '\r';
LF = '\n';
CRLF = (CR ? LF);
BRACKET = ('(' | ')' | '[' | ']' | '
(
Read more... )
Comments 4
Reply
Reply
Reply
Reply
Leave a comment