ToC Lab
Regex → NFA
GitHub

Regular Expression

Supported Regex Syntax


  • a-z, A-Z, 0-9 Characters from the alphabet and digits
  • * Kleene Star (0 or more repetitions)
  • | Union / OR operator (e.g., a|b)
  • ( ) Parentheses for grouping expressions
Example: (a|b)*aba

NFA