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

CreateFromRegexes() public method

Create a product of the automata of the given regexes.
public CreateFromRegexes ( ) : Automaton
return Automaton
        public Automaton<BDD> CreateFromRegexes(params string[] regexes)
        {
            return CreateFromRegexes(RegexOptions.None, regexes);
        }

Same methods

RexEngine::CreateFromRegexes ( RegexOptions options ) : Automaton