Skip to content

Commit ae4dde9

Browse files
authored
Update solution.md
1 parent 9943b94 commit ae4dde9

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/09-regexp-quantifiers/2-find-html-colors-6hex

1 file changed

+1
-1
lines changed

9-regular-expressions/09-regexp-quantifiers/2-find-html-colors-6hex/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let str = "color:#121212; background-color:#AA00ef bad-colors:f#fddee #fd2"
1414
alert( str.match(regexp) ); // #121212,#AA00ef
1515
```
1616

17-
Buradaki sorun rengi daha uzun değerlerini de bulması:
17+
Buradaki sorun daha uzun değerleri de bulmasıdır:
1818

1919
```js run
2020
alert( "#12345678".match( /#[a-f0-9]{6}/gi ) ) // #12345678

0 commit comments

Comments
 (0)