RegexMatcher.GetMatchResult C# (CSharp) Method

GetMatchResult() public static method

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

Same methods

RegexMatcher::GetMatchResult ( string input, string regexString ) : Match,