public static string Replace(this IRegex c, string parent, string replaceMent) { return(c.Replace(parent, replaceMent, RegexOptions.Compiled)); }
public static string Replace(this IRegex c, string parent, string replaceMent, RegexOptions opts) { return(c.Replace(parent, replaceMent, 0, -1, opts)); }