Araç ne yapar?
Regex ifadesini küçük parçalara ayırarak her token’ın ne anlama geldiğini açıklar.
Regex desenini token bazında açıklayın, flag anlamlarını görün ve temel yapı istatistiklerini çıkarın.
Regex desenini ve flag’leri girin; araç token bazında ne yaptığını açıklasın.
Örnek: `^(?:https?):\/\/[\w.-]+$` ve `i`
Requires the match to start here.
Groups tokens without storing a capture.
Matches the literal character "h".
Matches the literal character "t".
Matches the literal character "t".
Matches the literal character "p".
Matches the literal character "s".
Makes the previous token optional.
Closes the current group.
Matches the literal character ":".
Escapes the next character or token.
Escapes the next character or token.
Matches one character from the listed set or range.
Repeats the previous token at least once.
Requires the match to end here.
Regex ifadesini küçük parçalara ayırarak her token’ın ne anlama geldiğini açıklar.
Bu sürüm deterministic parser ile çalışır; AI katmanı yoktur ve anlık açıklama üretir.