Closed vsbogd closed 1 month ago
Make string a token which has double quote as a first and a last characters don't matter what is inside. Otherwise strings like "te\"st" are parsed as symbols because they cannot be recognized by regex "[^"]*".
"te\"st"
"[^"]*"
Make string a token which has double quote as a first and a last characters don't matter what is inside. Otherwise strings like
"te\"st"
are parsed as symbols because they cannot be recognized by regex"[^"]*"
.