diff --git a/README.md b/README.md index 1319a9c..8ab5163 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ characters in the range of 0 to 9). [Test the regular expression](https://regex101.com/r/juM86s/1) We can leave out the second number. For example, the regular expression `[0-9]{2,}` means: Match 2 or more digits. If we also remove -the comma the regular expression `[0-9]{2}` means: Match exactly 2 digits. +the comma the regular expression `[0-9]{3}` means: Match exactly 3 digits.
"[0-9]{2,}" => The number was 9.9997 but we rounded it off to 10.0. @@ -217,7 +217,7 @@ the comma the regular expression `[0-9]{2}` means: Match exactly 2 digits. [Test the regular expression](https://regex101.com/r/Gdy4w5/1)-"[0-9]{2}" => The number was 9.9997 but we rounded it off to 10.0. +"[0-9]{3}" => The number was 9.9997 but we rounded it off to 10.0.[Test the regular expression](https://regex101.com/r/gqajq8/1)