Tester de Regex
Prueba expresiones regulares con resaltado de coincidencias en tiempo real
Match Information›
empty string✨ AIAssistant›
Explanation›
History›
Regex Tester & Debugger
Test and debug regular expressions with live match highlighting, group capture, and flag support. Works with JavaScript regex syntax. Paste your pattern, enter test text, and see matches instantly.
FAQ
What regex flags are supported?
g (global), i (case-insensitive), m (multiline), s (dotAll), u (unicode), and y (sticky) — the same flags as JavaScript's RegExp.
How do I match a whole word?
Use word boundaries: \bword\b matches 'word' but not 'words' or 'keyword'.
How do I make a regex case-insensitive?
Add the i flag. /hello/i will match Hello, HELLO, hElLo, etc.
What is a capture group?
Parentheses create a capture group: (\d+) captures one or more digits. Named groups use (?<name>pattern).
Sigue explorando
Otras herramientas de Desarrollo que te pueden gustar…
Formateador JSON
Formatea, valida y minifica JSON con resaltado de sintaxis y detección de errores
Codificador/Decodificador Base64
Codifica texto o archivos a Base64 y decodifica cadenas Base64 a texto legible
Codificador/Decodificador de URL
Codifica y decodifica componentes URL y parámetros de query string
Generador de UUID
Genera UUIDs aleatorios (v1, v4) o genera múltiples UUIDs en lote
Generador de Hash
Genera hashes MD5, SHA-1, SHA-256, SHA-512 desde texto o archivos
Decodificador JWT
Decodifica e inspecciona JSON Web Tokens — ve header, payload y verifica firmas
Formateador HTML
Formatea y embellece código HTML con indentación correcta y resaltado de sintaxis
Minificador CSS
Minifica código CSS para reducir tamaño eliminando espacios en blanco y comentarios