Regex Builder
Build regular expressions visually with pattern blocks. Combine patterns and quantifiers with live testing.
/.../g
Regular Expressions - Detalles técnicos
Regular expressions are patterns used to match character combinations in strings. Build patterns with character classes (\\d, \\w, \\s), quantifiers (+, *, ?), anchors (^, $), and groups. Test your patterns against sample text.
Alternativa de línea de comandos
// Common regex patterns\n/^[\\w.-]+@[\\w.-]+\\.[a-z]{2,}$/i // email\n/^\\d{3}-\\d{3}-\\d{4}$/ // phone\n/^https?:\\/\\/.+/ // URL