Parse() 공개 메소드

public Parse ( string input ) : RegexEngine
input string
리턴 RegexEngine
예제 #1
0
        public RegexEngine(Regex regex, string input)
        {
            _input = input;

            // Every time GetParseSteps() is called, the Regex gets a new IRegexEngine.
            _getParseSteps = () => regex.Parse(new RegexEngineInternal(input));
        }
예제 #2
0
        public RegexEngine(Regex regex, string input)
        {
            _input = input;

            // Every time GetParseSteps() is called, the Regex gets a new IRegexEngine.
            _getParseSteps = () => regex.Parse(new RegexEngineInternal(input));
        }