mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
17 lines
299 B
Plaintext
17 lines
299 B
Plaintext
/foobar/
|
|
/fo[o](?=bar)/
|
|
/\/\\\[\]/
|
|
/(fo|o?)+b*ar?/
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["regex", "/foobar/"],
|
|
["regex", "/fo[o](?=bar)/"],
|
|
["regex", "/\\/\\\\\\[\\]/"],
|
|
["regex", "/(fo|o?)+b*ar?/"]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for regexes. |