Introduction Convert simple regular expressions to deterministic finite automaton. (Regex => NFA => DFA)
Supported grammars r = (s) r = st r = s|t r = s* r = s+ r = s? r = ϵ (Copy this character to input if needed)