author | Christian Urban <christian.urban@kcl.ac.uk> |
Sat, 09 Sep 2023 14:14:31 +0100 | |
changeset 916 | 10f834eb0a9e |
parent 893 | 54a483a33763 |
child 939 | f85e784d3014 |
permissions | -rw-r--r-- |
31 | 1 |
\documentclass{article} |
264
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
2 |
\usepackage{../style} |
292
7ed2a25dd115
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
267
diff
changeset
|
3 |
\usepackage{../graphics} |
146
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
4 |
|
31 | 5 |
\begin{document} |
6 |
||
7 |
\section*{Homework 4} |
|
8 |
||
916 | 9 |
%%\HEADER |
347
22b5294daa2a
updated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
294
diff
changeset
|
10 |
|
31 | 11 |
\begin{enumerate} |
34 | 12 |
|
726 | 13 |
\item Given the regular expressions |
14 |
||
15 |
\begin{center} |
|
16 |
\begin{tabular}{ll} |
|
17 |
1) & $(ab + a)\cdot (\ONE + b)$\\ |
|
18 |
2) & $(aa + a)^*$\\ |
|
19 |
\end{tabular} |
|
20 |
\end{center} |
|
21 |
||
22 |
there are several values for how these regular expressions can |
|
23 |
recognise the strings (for 1) $ab$ and (for 2) $aaa$. Give in each case |
|
24 |
\emph{all} the values and indicate which one is the POSIX value. |
|
25 |
||
26 |
||
444
3056a4c071b0
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
401
diff
changeset
|
27 |
\item If a regular expression $r$ does not contain any occurrence of $\ZERO$, |
893 | 28 |
is it possible for $L(r)$ to be empty? Explain why, or give a proof. |
29 |
||
30 |
\solution{ |
|
31 |
The property to prove is |
|
32 |
||
33 |
\begin{center} |
|
34 |
$P(r)$: If $r$ does not contain $\ZERO$, then $L(r) \not= \emptyset$. |
|
35 |
\end{center} |
|
36 |
||
37 |
For this you have to now go through all cases. |
|
38 |
||
39 |
Case $r = 0$: $P(\ZERO)$ says: If $\ZERO$ does not contain $\ZERO$ |
|
40 |
then \ldots. The premise is obviously false, so everything follows, |
|
41 |
in particular $L(r) \not= \emptyset$.\medskip |
|
42 |
||
43 |
Case $r = \ONE$ and $r = c$ are similar, just that the premise is |
|
44 |
true, but also $L(\ONE)$ and $L(c)$ are not empty. So we shown |
|
45 |
$L(r) \not= \emptyset$.\medskip |
|
46 |
||
47 |
Case $r = r_1 + r_2$: We know $P(r_1)$ and $P(r_2)$ as IHs. We need to show |
|
48 |
$P(r_1 + r_2)$: If $r_1 + r_2$ does not contain $\ZERO$, then $L(r_1 + r_2) \not= \emptyset$. |
|
49 |
||
50 |
If $r_1 + r_2$ does not contain $\ZERO$, then also $r_1$ does not contain $\ZERO$ |
|
51 |
and $r_2$ does not contain $\ZERO$. So we can apply the two IHs $P(r_1)$ and $P(r_2)$, |
|
52 |
which allow us to infer that $L(r_1) \not= \emptyset$ and $L(r_2) \not= \emptyset$. |
|
53 |
But if this is the case, then also $L(r_1 + r_2) \not= \emptyset$, which is what we needed |
|
54 |
to show in this case.\medskip |
|
55 |
||
56 |
The other cases are similar.\bigskip |
|
57 |
||
58 |
||
59 |
This lemma essentially says that for basic regular expressions, if |
|
60 |
they do not match anything at all, they must contain $\ZERO$(s) |
|
61 |
somewhere. |
|
62 |
||
63 |
} |
|
32 | 64 |
|
264
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
65 |
\item Define the tokens and regular expressions for a language |
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
66 |
consisting of numbers, left-parenthesis $($, right-parenthesis $)$, |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
67 |
identifiers and the operations $+$, $-$ and $*$. Can the following |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
68 |
strings in this language be lexed? |
264
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
69 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
70 |
\begin{itemize} |
264
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
71 |
\item $(a + 3) * b$ |
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
72 |
\item $)()++ -33$ |
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
73 |
\item $(a / 3) * 3$ |
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
74 |
\end{itemize} |
264
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
75 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
76 |
In case they can, can you give the corresponding token |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
77 |
sequences. |
264
4deef8ac5d72
uodated hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
166
diff
changeset
|
78 |
|
768 | 79 |
\item Assume $r$ is nullable. Show that |
80 |
\[ 1 + r + r\cdot r \;\equiv\; r\cdot r |
|
81 |
\] |
|
82 |
||
83 |
holds. |
|
84 |
||
893 | 85 |
\solution{ |
86 |
If $r$ is nullable, then $1 + r \equiv r$. With this you can replace |
|
87 |
||
88 |
\begin{align} |
|
89 |
(1 + r) + r\cdot r & \equiv r + r\cdot r\\ |
|
90 |
& \equiv r \cdot (1 + r)\\ |
|
91 |
& \equiv r \cdot r |
|
92 |
\end{align} |
|
93 |
||
94 |
where in (2) you pull out the ``factor'' $r$ (because $r_1 \cdot (r_2 + r_3) \equiv r_1 \cdot r_2 + r_1 \cdot r_3$). |
|
95 |
} |
|
96 |
||
97 |
||
768 | 98 |
\item \textbf{(Deleted)} Assume that $s^{-1}$ stands for the operation of reversing a |
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
99 |
string $s$. Given the following \emph{reversing} function on regular |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
100 |
expressions |
32 | 101 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
102 |
\begin{center} |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
103 |
\begin{tabular}{r@{\hspace{1mm}}c@{\hspace{1mm}}l} |
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
104 |
$rev(\ZERO)$ & $\dn$ & $\ZERO$\\ |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
105 |
$rev(\ONE)$ & $\dn$ & $\ONE$\\ |
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
106 |
$rev(c)$ & $\dn$ & $c$\\ |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
107 |
$rev(r_1 + r_2)$ & $\dn$ & $rev(r_1) + rev(r_2)$\\ |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
108 |
$rev(r_1 \cdot r_2)$ & $\dn$ & $rev(r_2) \cdot rev(r_1)$\\ |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
109 |
$rev(r^*)$ & $\dn$ & $rev(r)^*$\\ |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
110 |
\end{tabular} |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
111 |
\end{center} |
34 | 112 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
113 |
and the set |
32 | 114 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
115 |
\begin{center} |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
116 |
$Rev\,A \dn \{s^{-1} \;|\; s \in A\}$ |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
117 |
\end{center} |
31 | 118 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
119 |
prove whether |
32 | 120 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
121 |
\begin{center} |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
122 |
$L(rev(r)) = Rev (L(r))$ |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
123 |
\end{center} |
31 | 124 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
125 |
holds. |
42 | 126 |
|
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
127 |
\item Assume the delimiters for comments are |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
128 |
\texttt{$\slash$*} and \texttt{*$\slash$}. Give a |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
129 |
regular expression that can recognise comments of the |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
130 |
form |
42 | 131 |
|
267
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
132 |
\begin{center} |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
133 |
\texttt{$\slash$*~\ldots{}~*$\slash$} |
a1544b804d1e
updated homeworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
264
diff
changeset
|
134 |
\end{center} |
42 | 135 |
|
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
136 |
where the three dots stand for arbitrary characters, but |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
137 |
not comment delimiters. (Hint: You can assume you are |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
138 |
already given a regular expression written \texttt{ALL}, |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
139 |
that can recognise any character, and a regular |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
140 |
expression \texttt{NOT} that recognises the complement |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
141 |
of a regular expression.) |
355
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
142 |
|
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
143 |
\item Simplify the regular expression |
42 | 144 |
|
355
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
145 |
\[ |
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
146 |
(\ZERO \cdot (b \cdot c)) + |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
147 |
((\ZERO \cdot c) + \ONE) |
355
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
148 |
\] |
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
149 |
|
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
150 |
Does simplification always preserve the meaning of a |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
151 |
regular expression? |
355
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
152 |
|
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
153 |
\item The Sulzmann \& Lu algorithm contains the function |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
154 |
$mkeps$ which answers how a regular expression can match |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
155 |
the empty string. What is the answer of $mkeps$ for the |
355
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
156 |
regular expressions: |
146
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
157 |
|
355
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
158 |
\[ |
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
159 |
\begin{array}{l} |
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
160 |
(\ZERO \cdot (b \cdot c)) + |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
161 |
((\ZERO \cdot c) + \ONE)\\ |
577 | 162 |
(a + \ONE) \cdot (\ONE + \ONE)\\ |
163 |
a^* |
|
355
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
164 |
\end{array} |
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
165 |
\] |
a259eec25156
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
347
diff
changeset
|
166 |
|
401
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
167 |
\item What is the purpose of the record regular expression in |
5d85dc9779b1
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
359
diff
changeset
|
168 |
the Sulzmann \& Lu algorithm? |
498 | 169 |
|
843 | 170 |
\item Recall the functions \textit{nullable} and |
171 |
\textit{zeroable}. Define recursive functions |
|
172 |
\textit{atmostempty} (for regular expressions that match no |
|
173 |
string or only the empty string), \textit{somechars} (for |
|
174 |
regular expressions that match some non-empty string), |
|
175 |
\textit{infinitestrings} (for regular expressions that can match |
|
176 |
infinitely many strings). |
|
893 | 177 |
|
178 |
\solution{ |
|
179 |
\textbf{zeroable}: The property is $z(r) \;\text{iff}\; L(r) = \emptyset$: |
|
180 |
||
181 |
\begin{align} |
|
182 |
z(\ZERO) &\dn true\\ |
|
183 |
z(\ONE) &\dn false\\ |
|
184 |
z(c) &\dn false\\ |
|
185 |
z(r_1 + r_2) &\dn z(r_1) \wedge z(r_2)\\ |
|
186 |
z(r_1 \cdot r_2) &\dn z(r_1) \vee z(r_2)\\ |
|
187 |
z(r^*) &\dn false |
|
188 |
\end{align}\bigskip |
|
189 |
||
190 |
\textbf{atmostempty}: The property is ``either $L(r) = \emptyset$ or $L(r) = \{[]\}$'', which |
|
191 |
is more formally $a(r) \;\text{iff}\; L(r) \subseteq \{[]\}$: |
|
192 |
||
193 |
\begin{align} |
|
194 |
a(\ZERO) &\dn true\\ |
|
195 |
a(\ONE) &\dn true\\ |
|
196 |
a(c) &\dn false\\ |
|
197 |
a(r_1 + r_2) &\dn a(r_1) \wedge a(r_2)\\ |
|
198 |
a(r_1 \cdot r_2) &\dn z(r_1) \vee z(r_2) \vee (a(r_1) \wedge a(r_2))\\ |
|
199 |
a(r^*) &\dn a(r) |
|
200 |
\end{align} |
|
201 |
||
202 |
For this it is good to remember the regex should either not |
|
203 |
match anything at all, or just the empty string.\bigskip |
|
204 |
||
205 |
\textbf{somechars}: The property is ``$L(r)$ must contain a string which is not the empty string'', which |
|
206 |
is more formally $s(r) \;\text{iff}\; \exists\,s. s \not= [] \wedge s \in L(r)$: |
|
207 |
||
208 |
\begin{align} |
|
209 |
s(\ZERO) &\dn false\\ |
|
210 |
s(\ONE) &\dn false\\ |
|
211 |
s(c) &\dn true\\ |
|
212 |
s(r_1 + r_2) &\dn s(r_1) \vee s(r_2)\\ |
|
213 |
s(r_1 \cdot r_2) &\dn (\neg z(r_1) \wedge s(r_2)) \;\vee\; (\neg z(r_2) \wedge s(r_1))\\ |
|
214 |
s(r^*) &\dn s(r) |
|
215 |
\end{align} |
|
216 |
||
217 |
Here the interesting case is $r_1 \cdot r_2$ where one essentially has to make sure |
|
218 |
that one of the regexes is not zeroable, because then the resulting regex cannot match any |
|
219 |
string.\bigskip |
|
220 |
||
221 |
\textbf{infinitestrings}: The property is |
|
222 |
$i(r) \;\text{iff}\; L(r)\;\text{is infinite}$: |
|
223 |
||
224 |
\begin{align} |
|
225 |
i(\ZERO) &\dn false\\ |
|
226 |
i(\ONE) &\dn false\\ |
|
227 |
i(c) &\dn false\\ |
|
228 |
i(r_1 + r_2) &\dn i(r_1) \vee i(r_2)\\ |
|
229 |
i(r_1 \cdot r_2) &\dn (\neg z(r_1) \wedge i(r_2)) \;\vee\; (\neg z(r_2) \wedge i(r_1))\\ |
|
230 |
i(r^*) &\dn \neg a(r) |
|
231 |
\end{align} |
|
232 |
||
233 |
Here the interesting bit is that as soon $r$ can match at least a single string, then $r^*$ |
|
234 |
will match infinitely many strings. |
|
235 |
} |
|
236 |
||
498 | 237 |
|
892 | 238 |
\item There are two kinds of automata that are generated for |
843 | 239 |
regular expression matching---DFAs and NFAs. (1) Regular expression engines like |
240 |
the one in Python generate NFAs. Explain what is the problem with such |
|
241 |
NFAs and what is the reason why they use NFAs. (2) Regular expression |
|
242 |
engines like the one in Rust generate DFAs. Explain what is the |
|
243 |
problem with these regex engines and also what is the problem with $a^{\{1000\}}$ |
|
244 |
in these engines. |
|
245 |
||
146
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
246 |
%\item (Optional) The tokenizer in \texttt{regexp3.scala} takes as |
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
247 |
%argument a string and a list of rules. The result is a list of tokens. Improve this tokenizer so |
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
248 |
%that it filters out all comments and whitespace from the result. |
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
249 |
|
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
250 |
%\item (Optional) Modify the tokenizer in \texttt{regexp2.scala} so that it |
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
251 |
%implements the \texttt{findAll} function. This function takes a regular |
9da175d5eb63
added new hws
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
102
diff
changeset
|
252 |
%expressions and a string, and returns all substrings in this string that |
444
3056a4c071b0
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
401
diff
changeset
|
253 |
%match the regular expression. |
3056a4c071b0
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
401
diff
changeset
|
254 |
|
3056a4c071b0
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
401
diff
changeset
|
255 |
\item \POSTSCRIPT |
31 | 256 |
\end{enumerate} |
257 |
||
258 |
||
259 |
\end{document} |
|
260 |
||
261 |
%%% Local Variables: |
|
262 |
%%% mode: latex |
|
263 |
%%% TeX-master: t |
|
264 |
%%% End: |