C# Class RegexMatcher, Milvasoft

Inheritance: IMatcher
Afficher le fichier Open project: Milvasoft/Milvasoft Class Usage Examples

Méthodes publiques

Méthode Description
GetMatchResult ( Regex, regex, string input ) : Match,

Checks if input matches regex.

GetMatchResult ( string input, string regexString ) : Match,

Checks if input matches regexString.

MatchRegex ( Regex, regex, string input ) : bool

Checks if input matches regex.

MatchRegex ( string input, string regexString ) : bool

Checks if input matches regexString.

Method Details

GetMatchResult() public static méthode

Checks if input matches regex.
public static GetMatchResult ( Regex, regex, string input ) : Match,
regex Regex,
input string
Résultat Match,

GetMatchResult() public static méthode

Checks if input matches regexString.
public static GetMatchResult ( string input, string regexString ) : Match,
input string
regexString string
Résultat Match,

MatchRegex() public static méthode

Checks if input matches regex.
public static MatchRegex ( Regex, regex, string input ) : bool
regex Regex,
input string
Résultat bool

MatchRegex() public static méthode

Checks if input matches regexString.
public static MatchRegex ( string input, string regexString ) : bool
input string
regexString string
Résultat bool