You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(alexa:define-string-lexer dummy-lexer
"This works fine"
()
("\"(?:[^\"\\\\]|\\\\.)*\"" (return (token :term $@))))
(alexa:define-string-lexer dummy-lexer
"This fails to compile the regex: Missing right bracket to close character class. at position 6";; Same regex, copy-pasted
((:string"\"(?:[^\"\\\\]|\\\\.)*\""))
("{{STRING}}" (return (token :term $@))))
The text was updated successfully, but these errors were encountered:
From @fstamour:
The text was updated successfully, but these errors were encountered: