mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
32 lines
475 B
Plaintext
32 lines
475 B
Plaintext
""
|
|
"fo\"o"
|
|
|
|
@""
|
|
@"foo"
|
|
@"fo""o"
|
|
@"foo
|
|
bar"
|
|
|
|
'a'
|
|
'\''
|
|
'\\'
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", "\"\""],
|
|
["string", "\"fo\\\"o\""],
|
|
|
|
["string", "@\"\""],
|
|
["string", "@\"foo\""],
|
|
["string", "@\"fo\"\"o\""],
|
|
["string", "@\"foo\r\nbar\""],
|
|
["string", "'a'"],
|
|
["string", "'\\''"],
|
|
["string", "'\\\\'"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for normal and verbatim strings.
|
|
Also checks for single quoted characters. |