edward

An extensible POSIX-compatible implementation of the ed(1) text editor

git clone https://git.8pit.net/edward.git

 1;;> This library implementes [BRE][bre posix] regex replacements on top
 2;;> of the existing [posix-regex][posix-regex egg] library.
 3;;>
 4;;> [posix-regex egg]: https://wiki.call-cc.org/eggref/5/posix-regex
 5;;> [bre posix]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html
 6
 7(define-library (edward.replace)
 8  (import (scheme base)
 9          (scheme lazy)
10
11          (srfi 1)
12          (srfi 14)
13
14          (matchable)
15          (posix-regex)
16
17          (edward parse))
18
19  (export parse-replace regex-replace)
20
21  (include "replace.scm"))