shithub: martian9

ref: 271c7847be7a17ea20b84720a4b740255877da6c
dir: /utils.ml/

View raw version
exception Syntax_error of string
exception Runtime_error of string

(* copied verbatim - must needs grok *)
let gsub re f str =
  String.concat
    ""
    (List.map
       (function
         | Str.Delim x -> f x
         | Str.Text x -> x)
       (Str.full_split re str))
;;