Exemplo n.º 1
0
 public static string Replace(string input, string pattern, string replacement)
 {
     return(RegexCache.Get(pattern, RegexOptions.None).Replace(input, replacement));
 }
Exemplo n.º 2
0
 public FastRegex(string pattern)
 {
     re = RegexCache.Get(pattern, RegexOptions.None);
 }
Exemplo n.º 3
0
 public static bool IsMatch(string input, string pattern)
 {
     return(RegexCache.Get(pattern, RegexOptions.None).IsMatch(input));
 }
Exemplo n.º 4
0
 public FastRegex(string pattern, RegexOptions options)
 {
     re = RegexCache.Get(pattern, options);
 }