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