RegExpose.Regex.Parse C# (CSharp) Méthode

Parse() public méthode

public Parse ( string input ) : RegexEngine
input string
Résultat RegexEngine
        public RegexEngine Parse(string input)
        {
            return new RegexEngine(this, input);
        }

Usage Example

        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));
        }
All Usage Examples Of RegExpose.Regex::Parse