If I am not mistaken, quote marks should work as the content of them is raw-text. From lex manual:
" " Matches the enclosed character or string even if it is an operator.
So let' say
"("
and
\\(
are equivalent, right?
gplex violates this rule -- for example "." is seen not as character-dot, but as regex-dot (match anything).
" " Matches the enclosed character or string even if it is an operator.
So let' say
"("
and
\\(
are equivalent, right?
gplex violates this rule -- for example "." is seen not as character-dot, but as regex-dot (match anything).