-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
It would be nice if branch reset patterns were supported.
CL-USER> (scan-to-strings "(?|(abc)|(123))" "abcdef")
"abc"
#("abc")
CL-USER> (scan-to-strings "(?|(abc)|(123))" "123456")
"123"
#("123")
instead of the default behaviour:
CL-USER> (scan-to-strings "(abc)|(123)" "abcdef")
"abc"
#("abc" NIL)
CL-USER> (scan-to-strings "(abc)|(123)" "123456")
"123"
#(NIL "123")
Metadata
Metadata
Assignees
Labels
No labels