Was macht das Tool?
Es zerlegt einen Regex in kleinere Teile und erklärt die Bedeutung jedes Tokens.
Erkläre einen Regex pro Token, prüfe Flags und sieh die grundlegenden Strukturwerte.
Gib Regex-Muster und Flags ein, um eine Erklärung pro Token zu sehen.
Beispiel: `^(?:https?):\/\/[\w.-]+$` mit `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.
Es zerlegt einen Regex in kleinere Teile und erklärt die Bedeutung jedes Tokens.
Diese Version arbeitet vollständig deterministisch und erzeugt sofortige Erklärungen ohne KI-Schicht.