Microsoft.Automata.Rex.RexEngine.IsMatch C# (CSharp) 메소드

IsMatch() 공개 정적인 메소드

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
리턴 bool
        public static bool IsMatch(string input, string regex, RegexOptions options)
        {
            return Regex.IsMatch(input, regex, options);
        }