We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f4f2f commit ee2df80Copy full SHA for ee2df80
docs/labs/regex1.html
@@ -289,8 +289,8 @@ <h2>Task Information</h2>
289
So <tt>[A-D]*</tt> will match 0 or more letters as long as every letter
290
is an A, B, C, or D.
291
<li>You can use "<tt>|</tt>" to identify options, any of which are acceptable.
292
-When validating input, should surround the options with parenthesis,
293
-because "<tt>|</tt>" has a low precedence.
+When validating input, should surround the collection of options
+with parenthesis, because "<tt>|</tt>" has a low precedence.
294
So for example, "<tt>(yes|no)</tt>" is a way to match either "yes" or "no".
295
</ol>
296
0 commit comments