Hey, Earl
Recall that a âregular expression,â otherwise known as a âregex,â is a pattern designed to match some string. For instance, a regex like y
would match any string containing a y
, a regex like yes
would match any string containing yes
, a regex like ^yes
would match any string starting with yes
, and a regex like ^yes$
would match only the string yes
.
Read up on regular expressions via Pythonâs Regular Expression HOWTO, focusing on these sections specifically:
-
(1 point.) Describe, in a sentence, the set of strings that a regex like
^yes+$
would match. -
(1 point.) Describe, in a sentence, the set of strings that a regex like
^yes\s*$
would match. -
(2 points.) Consider the Python program below.
import re words = input("Say something!\n") p = re.compile("my name is (.*)", re.IGNORECASE) matches = p.search(words) if matches: print(f"Hey, {matches[1]}.") else: print("Hey, you.")
Given input like
My name is Earl
, this program politely outputsHey, Earl
. Given input likeMy name is Earl Hickey
, though, this program outputsHey, Earl Hickey
, which feels a bit formal. Propose how to modify the argument tore.compile
in such a way (without hardcodingEarl
) that this program would instead outputHey, Earl
in both cases.
DFAs
It turns out that regular expressions can be implemented in software with âdeterministic finite automataâ (DFAs), otherwise known as âstate machines.â DFAs can even be implemented with diagrams as well, wherein each node (i.e., circle) represents a âstateâ and each edge (i.e., line) represents a âtransition.â For instance, below is a DFA that implements a regex like ^yes$
:
A DFA is a machine (or algorithm, really) in the sense that it takes some input and produces some output. Its input is a string (like y
or yes
). Its output is a decision: to âacceptâ or to ârejectâ that string. A DFA accepts a string if that string matches a pattern, the very regex that the DFA implements. A DFA rejects a string if that string doesnât match the pattern.
How does a DFA decide whether its input matches a pattern? Well, when a DFA is âturned on,â so to speak, itâs considered to be in its âstartâ state, as is indicated by a circle with a >. It then looks at the first character of its input. If there is an edge labeled with that same character from the start state to some other state, the DFA transitions from its start state to the other, thereby consuming the character. The DFA then looks at the second character of its output. If there is an edge labeled with that same character from its current state to another, it transitions again, consuming the character. If, upon consuming every character of its input, the DFA finds itself in an âacceptâ state, as is indicated by a circle within a circle, it must be the case that the string matched the pattern, and so the DFA accepts it (and turns off). If, though, at any point, the DFA finds itself in a ârejectâ state, as is indicated with a circle without a circle within it, having consumed all of its input or unable to transition from one state to another because thereâs no edge labeled the same as the character currently being read, it must be the case that the input didnât match the pattern, and so the DFA rejects it (and turns off).
Consider, for instance, how the DFA above might process an input like y
, which doesnât match ^yes$
.
- The DFA starts in its start state.
- The DFA reads the first (and only) character of its input,
y
. Because there is an edge labeledy
, the DFA transitions from its start state to its second state, thereby consuming thaty
. - Because the DFA has consumed all of its input but is in a reject state, the DFA rejects
y
, just as it should, becausey
doesnât match^yes$
.
Now consider how the DFA above might process an input like yes
, which does match ^yes$
:
- The DFA starts in its start state.
- The DFA reads the first character of its input,
y
. Because there is an edge labeledy
, the DFA transitions from its start state to its second state, thereby consuming thaty
. - The DFA reads the second character of its input,
e
. Because there is an edge labelede
, the DFA transitions from its second state to its third state, thereby consuming thate
. - The DFA reads the third (and final) character of its input,
s
. Because there is an edge labeleds
, the DFA transitions from its third state to its fourth state, thereby consuming thats
. - Because the DFA has consumed all of its input and is in an accept state, the DFA accepts
yes
, just as it should, becauseyes
matches^yes$
.
Consider the DFA below.
-
(2 points.) What regex does this DFA implement?
-
(3 points.) What are three strings that this DFA would accept?
-
(1 point.) What is one string that this DFA would not accept?