ماذا تفعل الأداة؟
تقسم regex إلى أجزاء أصغر وتشرح معنى كل token.
اشرح regex رمزًا برمز، وراجع الرايات والإحصاءات البنيوية الأساسية.
أدخل نمط regex والرايات للحصول على شرح لكل token.
مثال: `^(?:https?):\/\/[\w.-]+$` مع `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 إلى أجزاء أصغر وتشرح معنى كل token.
هذا الإصدار deterministic بالكامل ويعيد الشرح فورًا من دون طبقة AI.