Regex Açıklayıcı

Regex desenini token bazında açıklayın, flag anlamlarını görün ve temel yapı istatistiklerini çıkarın.

Regex Açıklayıcı

Regex desenini ve flag’leri girin; araç token bazında ne yaptığını açıklasın.

Örnek: `^(?:https?):\/\/[\w.-]+$` ve `i`

Özet

Geçerli regex
This pattern uses 2 anchors, contains 1 group, contains 1 character class, uses 2 quantifiers, runs with i flag.
Grup
1
Karakter sınıfı
1
Quantifier
2
Alternation
0
Anchor
2

Flag açıklamaları

icase-insensitive

Token açıklamaları

^
Start anchor

Requires the match to start here.

(?:
Non-capturing group

Groups tokens without storing a capture.

h
Literal

Matches the literal character "h".

t
Literal

Matches the literal character "t".

t
Literal

Matches the literal character "t".

p
Literal

Matches the literal character "p".

s
Literal

Matches the literal character "s".

?
Zero or one

Makes the previous token optional.

)
Group end

Closes the current group.

:
Literal

Matches the literal character ":".

\/
Escaped token

Escapes the next character or token.

\/
Escaped token

Escapes the next character or token.

[\w.-]
Character class

Matches one character from the listed set or range.

+
One or more

Repeats the previous token at least once.

$
End anchor

Requires the match to end here.

Araç ne yapar?

Regex ifadesini küçük parçalara ayırarak her token’ın ne anlama geldiğini açıklar.

İlk sürüm kapsamı nedir?

Bu sürüm deterministic parser ile çalışır; AI katmanı yoktur ve anlık açıklama üretir.