arrow_back Volver al inicio

Probador de Regex

Prueba expresiones regulares sobre texto de ejemplo, revisa coincidencias y ajusta flags sin salir del navegador.

code_blocks Codigohourglass_top Esperando resultado

Coincidencias

2

/\b[\w.%+-]+@[\w.-]+\.[A-Za-z]{2,}\b/gu

Indice 9

hello@gogotem.com

Indice 34

team@example.org

Como funciona

The tester builds a JavaScript regular expression from your pattern and selected flags, then scans the text and lists every match with its position.

Notas de uso

  • Turn on the global flag to capture every match instead of just the first one.
  • Case-insensitive matching is useful for email, tags, and user-entered text.
  • Invalid syntax is reported immediately so you can fix the pattern quickly.

Preguntas frecuentes

Does this use JavaScript regex syntax?expand_more

Yes. The tester follows the browser RegExp engine, including common flags such as global, ignore-case, multiline, dotAll, and unicode.

Can I use this for quick validation patterns?expand_more

Yes. It is useful for checking email patterns, URL fragments, form rules, and text extraction logic before using them in code.

Seguir explorando

Mas herramientas para probar

Descubre herramientas relacionadas de la misma categoria y opciones populares de Gogotem.

Ver todas las herramientas arrow_forward