Racket regular-expression matching
- by Inaimathi
I'm trying to create a regex that matches the inverse of a certain string type (so, strings not ending in ".js", for example).
According to the documentation, that should be the expression #rx"(?!\\.js$)", but it doesn't seem to work. To test it out, I have this function:
(define (match-test regex)
(map (lambda (text)
…