I'm converting a given set of regular expressions into a single NFA, but I'm having some issues. How should I convert a regular expression such as "ab.*c" (representing matching an 'a', a 'b', any number of characters, and then a 'c')?
My final goal is to convert the single NFA into a DFA (and I'm using the subset construction algorithm for that).