2018-12-19 14:09:39 +08:00

23 lines
388 B
Plaintext

""
''
"foo"
'foo'
"'foo'"
'"bar"'
" // comment "
----------------------------------------------------
[
["string", "\"\""],
["string", "''"],
["string", "\"foo\""],
["string", "'foo'"],
["string", "\"'foo'\""],
["string", "'\"bar\"'"],
["string", "\" // comment \""]
]
----------------------------------------------------
Checks for single-quoted and double-quoted strings.