Microsoft.Automata.Rex.RexEngine.IsMatch C# (CSharp) Method

IsMatch() public static method

Invokes System.Text.RegularExpressions.Regex.IsMatch(input, regex, options)
public static IsMatch ( string input, string regex, RegexOptions options ) : bool
input string
regex string
options RegexOptions
return bool
        public static bool IsMatch(string input, string regex, RegexOptions options)
        {
            return Regex.IsMatch(input, regex, options);
        }