¿Qué hace la herramienta?
Divide un regex en piezas más pequeñas y explica qué significa cada token.
Explica un regex token por token, revisa los flags y consulta estadísticas estructurales básicas.
Introduce un patrón regex y sus flags para ver una explicación token por token.
Ejemplo: `^(?:https?):\/\/[\w.-]+$` con `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.
Divide un regex en piezas más pequeñas y explica qué significa cada token.
Esta versión es totalmente determinista y ofrece explicaciones instantáneas sin capa de IA.