We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0235308 + 950af8c commit 9cda561Copy full SHA for 9cda561
5-regular-expressions/09-regexp-groups/1-find-webcolor-3-or-6/task.md
@@ -1,6 +1,6 @@
1
# Find color in the format #abc or #abcdef
2
3
-Write a regexp that matches colors in the format `#abc` or `#abcdef`. That is: `#` followed by 3 or 6 hexadimal digits.
+Write a RegExp that matches colors in the format `#abc` or `#abcdef`. That is: `#` followed by 3 or 6 hexadecimal digits.
4
5
Usage example:
6
```js
@@ -11,4 +11,4 @@ let str = "color: #3f3; background-color: #AA00ef; and: #abcd";
11
alert( str.match(reg) ); // #3f3 #AA0ef
12
```
13
14
-P.S. Should be exactly 3 or 6 hex digits: values like `#abcd` should not match.
+P.S. This should be exactly 3 or 6 hex digits: values like `#abcd` should not match.
0 commit comments