Skip to content

Commit

Permalink
Update task.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cys27 authored Mar 11, 2024
1 parent fe7267b commit 3ed16a5
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Regexp for HTML colors
# HTML renkler için düzenli ifade (regexp)

Create a regexp to search HTML-colors written as `#ABCDEF`: first `#` and then 6 hexadecimal characters.
`#ABCDEF` şeklinde yazılmış HTML-renklerini aramak için bir düzenli ifade oluşturun: önce `#` ve ardından 6 onaltılık karakterler gelmesi lazım.

An example of use:
Bir kullanım örneği:

```js
let regexp = /...your regexp.../
let regexp = /...senin duzenli ifaden.../

let str = "color:#121212; background-color:#AA00ef bad-colors:f#fddee #fd2 #12345678";

alert( str.match(regexp) ) // #121212,#AA00ef
```

P.S. In this task we do not need other color formats like `#123` or `rgb(1,2,3)` etc.
NOT: Bu görevde `#123` veya `rgb(1,2,3)` vb. diğer renk formatlarına ihtiyacımız yoktur.

0 comments on commit 3ed16a5

Please sign in to comment.