mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
33 lines
484 B
Plaintext
33 lines
484 B
Plaintext
""
|
|
"foobar"
|
|
"fo:"o"
|
|
"foo:)bar:>baz"
|
|
"foo:{bar}baz"
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["string", ["\"\""]],
|
|
["string", ["\"foobar\""]],
|
|
["string", [
|
|
"\"fo",
|
|
["symbol", ":\""],
|
|
"o\""
|
|
]],
|
|
["string", [
|
|
"\"foo",
|
|
["symbol", ":)"],
|
|
"bar",
|
|
["symbol", ":>"],
|
|
"baz\""
|
|
]],
|
|
["string", [
|
|
"\"foo",
|
|
["variable", ":{bar}"],
|
|
"baz\""
|
|
]]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for strings, with variables and symbols in them. |