RE  DFA  NFA  TM  TM v.2 

Regular Expression Tester

Regular expression:
Test string:

Remember

^ start of line
$ end of line
. any symbol alphabet, Σ
| either Union, ∪
* zero or more copiesKleene's star (...)*
+ at least one copy(...)+

Examples

abba accepts any string with abba in it
^abba$ accepts only one string, abba
^(10)+1$ accepts strings of form 10101...01
^(1|0)*1$ accepts odd binary numbers