[plt-scheme] Possible bug in regexp?
Any news on the small example Jay identified?
Todd
------------------------------------------------------------
What's odd is that
(regexp-match?
#rx"^\"([^\"#\u0000]| |#\return#\newline|#\tab|\\\\\")*\"$"
"\")!\"")
succeeds, but
(regexp-match?
#rx"^\"([^\"#\u0000-#\u0000]| |#\return#\newline|#\tab|\\\\\")*\"$"
"\")!\"")
and
(regexp-match?
#rx"^\"([^\"#\u0000-#\u0001]| |#\return#\newline|#\tab|\\\\\")*\"$"
"\")!\"")
fail.
-------------------------------------------------------------