nixpkgs-suyu/pkgs/development/lisp-modules-new/import/util.lisp
2022-04-27 23:13:01 +02:00

16 lines
374 B
Common Lisp

(defpackage org.lispbuilds.nix/util
(:use :cl)
(:import-from :ppcre)
(:export
:replace-regexes))
(in-package org.lispbuilds.nix/util)
(defun replace-regexes (from to str)
(assert (= (length from) (length to)))
(if (null from)
str
(replace-regexes
(rest from)
(rest to)
(ppcre:regex-replace-all (first from) str (first to)))))