Ejemplo n.º 1
0
 public static Match RxMatch(this string s, RxPattern rxPatternType)
 {
     return(Regex.Match(s, XRegex.GetRxPattern(rxPatternType, false)));
 }
Ejemplo n.º 2
0
 public static MatchCollection RxMatches(this string s, RxPattern rxPatternType)
 {
     return(Regex.Matches(s, XRegex.GetRxPattern(rxPatternType, false)));
 }
Ejemplo n.º 3
0
 public static bool RxIsMatch(this string s, RxPattern rxPatternType)
 {
     return(Regex.IsMatch(s, XRegex.GetRxPattern(rxPatternType, true)));
 }