irregex icon indicating copy to clipboard operation
irregex copied to clipboard

bol and eol behaving differently on -search vs -replace/all

Open snan opened this issue 3 years ago • 0 comments

(import (chicken irregex))
(eq?
 (not (not (irregex-search '(: bol eol) "")))
 (equal? "foo" (irregex-replace/all '(: bol eol) "" "foo")))

This is #f on Chicken 5.3.0 but shouldn't it be #t?

snan avatar Nov 28 '21 12:11 snan