What does the tool do?
It breaks a regex into smaller pieces and explains what each token means.
Explain a regex token by token, inspect flags, and review the basic structural stats.
Enter a regex pattern and flags to get a token-by-token explanation.
Example: `^(?:https?):\/\/[\w.-]+$` with `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.
It breaks a regex into smaller pieces and explains what each token means.
This version is fully deterministic and returns instant explanations without an AI layer.