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