17 lines
315 B
Plaintext
Raw Normal View History

2018-12-19 14:09:39 +08:00
/foobar/
/fo[o](?=bar)/
/\/\\\[\]/
/(fo|o?)+b*ar?/
----------------------------------------------------
[
["regex", "/foobar/"],
["regex", "/fo[o](?=bar)/"],
["regex", "/\\/\\\\\\[\\]/"],
["regex", "/(fo|o?)+b*ar?/"]
]
----------------------------------------------------
Checks for regexes.