12 lines
505 B
Scheme
12 lines
505 B
Scheme
#!r6rs
|
|
(library (srfi :115)
|
|
(export regexp regexp? valid-sre? rx regexp->sre char-set->sre
|
|
regexp-matches regexp-matches? regexp-search
|
|
regexp-replace regexp-replace-all
|
|
regexp-fold regexp-extract regexp-split regexp-partition
|
|
regexp-match? regexp-match-count
|
|
regexp-match-submatch regexp-match-submatch/list
|
|
regexp-match-submatch-start regexp-match-submatch-end
|
|
regexp-match->list regexp-match->sexp)
|
|
(import (srfi :115 regexp)))
|