Parse() public method

public Parse ( string input ) : RegexEngine
input string
return RegexEngine
Ejemplo n.º 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));
        }
Ejemplo n.º 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));
        }