You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: curriculum/challenges/english/blocks/workshop-calorie-counter/63bf5adfe2981b332eb007b6.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,17 @@ dashedName: step-32
7
7
8
8
# --description--
9
9
10
-
The `+`modifier in a regex allows you to match a pattern that occurs one or more times. To match your digit pattern one or more times, add a plus after each of the digit character classes. For example: `[0-9]+`.
10
+
The `+`quantifier in a regular expression allows you to match a pattern that occurs one or more times. To match your digit pattern one or more times, add a plus after each of the digit character classes. For example: `[0-9]+`.
11
11
12
12
# --hints--
13
13
14
-
You should add the `+`modifier to the character class before `e` in your regular expression.
14
+
You should add the `+`quantifier to the character class before `e` in your regular expression.
0 commit comments