Compare commits
2 Commits
764e408a5f
...
d107fe018d
Author | SHA1 | Date | |
---|---|---|---|
d107fe018d | |||
c3757de491 |
@ -118,14 +118,11 @@ Write patterns that match the following strings:
|
|||||||
#hint([Remember that the check digit may be an `X`. Dashes are optional.])
|
#hint([Remember that the check digit may be an `X`. Dashes are optional.])
|
||||||
|
|
||||||
- A word of even length. \
|
- A word of even length. \
|
||||||
#hint([
|
#hint([The set `[A-z]` contains every english letter, capitalized and lowercase. \
|
||||||
The set `[A-z]` contains every english letter, capitalized and lowercase. \
|
`[a-z]` will only match lowercase letters.])
|
||||||
`[a-z]` will only match lowercase letters.
|
|
||||||
])
|
|
||||||
|
|
||||||
- A word with exactly 3 vowels. \
|
- A word with exactly 3 vowels. \
|
||||||
#hint([
|
#hint([The special token `\w` will match any word character. \
|
||||||
The special token `\w` will match any word character. \
|
|
||||||
It is equivalent to `[A-z0-9_]`. `_` represents a literal underscore.
|
It is equivalent to `[A-z0-9_]`. `_` represents a literal underscore.
|
||||||
])
|
])
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user