| Qualsiasi carattere | * | "c"*"t" – consente parole come cat, cot, ecc. | | |
| Lettera | C | C"ot" – consente parole come Rot, pot, cot, Dot, mot, ecc. | | |
| Lettera maiuscola | A | A"ot" – consente parole come Rot, Cot, Mot, Dot, ecc. | | |
| Lettera minuscola | a | a"ot" – consente parole come rot, cot, mot, dot, ecc. | | |
| Lettera o numero | X | X – consente qualsiasi numero o lettera isolati. | | |
| Numero | N | N"th" consente parole come 5th, 4th, 6th, ecc. | | |
| string | " " | "cot" | | |
| Oppure | ` | ` | `“pl”(“o" | "a”)“t”` – consente le parole “plot” e “plat”. |
| Carattere appartenente al gruppo | [] | [tm]"ot" – consente le parole “tot” e “mot”. | | |
| Carattere non appartenente al gruppo | [^] | [^t]"ot" – consente parole come “cot”, “lot”, ecc., ma non la parola “tot”. | | |
| Spazio (all’interno del gruppo) | \s | [A\s] consente solo la lettera A o uno spazio. | | |
| Qualsiasi numero di ripetizioni (si applica all’espressione o alla sottoespressione a sinistra) | {-} | [AB74]{-} – consente qualsiasi combinazione dei caratteri A, B, 7, 4 di qualsiasi lunghezza. | | |
| Numero di ripetizioni n | {n} | N{2}"th" consente parole come 25th, 84th, 11th, ecc. | | |
| Da n a m ripetizioni | {n-m} | N{1-3}"th" consente parole come 5th, 84th, 111th, ecc. | | |
| Da 0 a n ripetizioni | {-n} | N{-2}"th" consente parole come 84th, 5th, ecc. | | |
| Da n ripetizioni in poi | {n-} | N{2-}"th" consente parole come 25th, 834th, 311th, 34576th, ecc. | | |
| Sottoespressione | () | | | |
| Simbolo trattino | [\-] | | | |
| Simbolo barra | [\\] | | | |