How do you do convert an ɛ-NFA to a regular expression?
Take for example this ɛ-NFA in which there's an ɛ transition from the final state q2 to the initial state q0:
I first combine eliminate q1 and get the regular expression $ab^*b(ab^*b)^*$:
How do I get from here to a regular expression?
Am I done now and is the regular expression simply $ab^*b(ab^*b)^*$ or should I eliminate the ɛ transition as well to get a correct regular expression?

