Tester Espressioni Regolari e Validatore
Torna agli StrumentiAbout Regex Tester
Testa, debug e valida espressioni regolari con corrispondenza in tempo reale. Perfetto per validazione pattern nei form, estrazione dati e elaborazione testo. Supporta flag globali, case-insensitive e multilinea.
Key Features
- Real-time pattern matching and validation
- Support for all PHP regex functions (preg_match, preg_match_all, preg_replace, preg_split)
- Multiple pattern modifiers and flags
- Detailed match results with highlighting
- Copy results and patterns easily
How to Use
- Enter your regex pattern (e.g.,
/\d+/) - Add test text to match against
- Select the PHP function to test
- Choose modifiers and flags as needed
- Click "Process" to see results
Pro Tip: Use the educational sections below to learn regex patterns, see common examples, and avoid typical mistakes. Perfect for beginners and experienced developers alike!
Esempi Regex Comuni
Validazione Email
/\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b/
Numero di Telefono
/\+?[1-9]\d{1,14}$|^\(\d{3}\)\s?\d{3}-\d{4}$/
Validazione URL
/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/
Formato Data
/^\d{4}-\d{2}-\d{2}$|^\d{2}\/\d{2}\/\d{4}$/
Indirizzo IP
/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/
Carta di Credito
/^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|3[47][0-9]{13}|3[0-9]{13}|6(?:011|5[0-9]{2})[0-9]{12})$/
Foglio di Riferimento Regex
Metacaratteri
. - Any character^ - Start of line$ - End of line* - 0 or more+ - 1 or more? - 0 or 1| - OR operatorQuantificatori
{n} - Exactly n times{n,} - n or more times{n,m} - Between n and m* - 0 or more (greedy)*? - 0 or more (lazy)+ - 1 or more (greedy)+? - 1 or more (lazy)Ancoraggi
^ - Start of string$ - End of string\b - Word boundary\B - Non-word boundary\A - Start of string\Z - End of string\z - Absolute endClassi di Caratteri
[abc] - Any of a, b, c[a-z] - Any lowercase letter[A-Z] - Any uppercase letter\d - Any digit [0-9]\w - Any word character\s - Any whitespace\D - Non-digitConsigli per Test Regex
- Inizia con pattern semplici e aggiungi complessità gradualmente
- Usa stringhe di test che includono casi limite
- Testa sia corrispondenze positive che negative
- Considera le prestazioni con input di testo grandi
Errori Comuni
- Dimenticare di escludere caratteri speciali
- Non considerare la sensibilità alle maiuscole
- Uso eccessivo di quantificatori avidi
- Mancanza di punti di ancoraggio per corrispondenze esatte