We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3086c02 + 45b3d77 commit cc9eb56Copy full SHA for cc9eb56
episodes/04-regular-expressions.md
@@ -68,7 +68,7 @@ So, what is `^[Oo]rgani.e\b` going to match.
68
Other useful special characters are:
69
70
- `*` matches the preceding element zero or more times. For example, ab*c matches "ac", "abc", "abbbc", etc.
71
-- `+` matches the preceding element one or more times. For example, ab*c matches "abc", "abbbc" but not "ac".
+- `+` matches the preceding element one or more times. For example, ab+c matches "abc", "abbbc" but not "ac".
72
- `?` matches when the preceding character appears zero or one time.
73
- `{VALUE}` matches the preceding character the number of times define by VALUE; ranges can be specified with the syntax `{VALUE,VALUE}`
74
- `|` means or.
0 commit comments