“GREL OGÓLNE KLOSY ZABYJNEJ” Kod odpowiedzi

GREL OGÓLNE KLOSY ZABYJNEJ

* metacharacters
* character escapes \
* anchors \A\Z or ^$
* character classes [][^]
* quantifiers *?+{min,max}
* grouping ()
* substitutions $1 or \1
Disgusted Dove

GREL OGÓLNE KLOSY ZABYJNEJ

\d any digit
\D any non-digit
\w any word character [a-zA-Z0-9_]
\W any non-word char. [^a-zA-Z0-9_]
\s any whitespace char.
\S any non-whitespace char.
\t tab
\n newline
\r carriage return
Disgusted Dove

GREL OGÓLNE KLOSY ZABYJNEJ

. any character (almost*) 
\ escape character
| or
\A or ^ anchor: start of string
\Z or $ anchor: end of string
[] list or range to be matched
[^] negative list or range (NOT these characters)
Disgusted Dove

GREL OGÓLNE KLOSY ZABYJNEJ

\p{L} - letter
\p{P} - punctuation
\p{InBasicLatin} - in basic Latin Unicode block
\p{InArabic} - in Arabic Unicode block
Disgusted Dove

Odpowiedzi podobne do “GREL OGÓLNE KLOSY ZABYJNEJ”

Pytania podobne do “GREL OGÓLNE KLOSY ZABYJNEJ”

Więcej pokrewnych odpowiedzi na “GREL OGÓLNE KLOSY ZABYJNEJ” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu