Functor Kwre.Make

module Make: 
functor (Re : ReType) -> sig .. end
Functor to be applied to Re.
Parameters:
Re : ReType

val iter : Re.re -> string -> Re.substrings list
Deprecated.You should use Re.all instead.
iter re str: return list of substrings for all matches of re in str.
re : the compiled regular expression
str : the string to match against
val subst : subst:(Re.substrings -> string) -> Re.re -> string -> string
Deprecated.You should use Re.replace instead.
subst ~subst re str: in str, replace substrings matching re with result of (subst subs).
subst : function to compute replacement string for match
re : the compiled regular expression
str : the string to match against
val replace : Re.re -> string -> string -> string
Deprecated.You should use Re.replace_string instead.
replace re placement str: in str, replace substrings matching re with placement.
re : the compiled regular expression
placement : replacement string for each match
str : the string to match against