Computing - Regular Expressions
What regular expression is this?
\[ab\]
![PHOTO REGEX A
B](/assets/img/attachments/regex-a-or-b.png) What regular expression is this?
\[a|b\]
What regular expression is this?
\[a+\]
What regular expression is this?
\[a*\]
Visualise the finite state machine for $ab$?
Visualise the finite state machine for $a \vert b$?
![PHOTO REGEX A | B](/assets/img/attachments/regex-a-or-b.png) |
Visualise the finite state machine for $a+$?
Visualise the finite state machine for $a*$?
What is the precedence for regular expressions?
()
*
+
?
|