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