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.
2 parents 1fb782c + e717016 commit f9bec9fCopy full SHA for f9bec9f
5-regular-expressions/09-regexp-groups/3-find-decimal-positive-numbers/solution.md
@@ -3,7 +3,7 @@ An integer number is `pattern:\d+`.
3
4
A decimal part is: `pattern:\.\d+`.
5
6
-Because the decimal part is optional, let's put it in parentheses with quantifier `pattern:'?'`.
+Because the decimal part is optional, let's put it in parentheses with the quantifier `pattern:'?'`.
7
8
Finally we have the regexp: `pattern:\d+(\.\d+)?`:
9
0 commit comments