C# Class RegexMatcher, Milvasoft

Inheritance: IMatcher
ファイルを表示 Open project: Milvasoft/Milvasoft Class Usage Examples

Public Methods

Method 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 method

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

GetMatchResult() public static method

Checks if input matches regexString.
public static GetMatchResult ( string input, string regexString ) : Match,
input string
regexString string
return Match,

MatchRegex() public static method

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

MatchRegex() public static method

Checks if input matches regexString.
public static MatchRegex ( string input, string regexString ) : bool
input string
regexString string
return bool