| 任意字元 | * | "c"*"t" – 允許例如 cat、cot 等單字。 |
| 字母 | C | C"ot" – 允許例如 Rot、pot、cot、Dot、mot 等單字。 |
| 大寫字母 | A | A"ot" – 允許例如 Rot、Cot、Mot、Dot 等單字。 |
| 小寫字母 | a | a"ot" – 允許例如 rot、cot、mot、dot 等單字。 |
| 字母或數字 | X | X – 允許任何獨立的數字或字母。 |
| 數字 | N | N"th" 允許例如 5th、4th、6th 等單字。 |
| 字串 | " " | "cot" |
| 或 | | | "pl"("o"|"a")"t" – 允許單字「plot」與「plat」。 |
| 來自集合的字元 | [] | [tm]"ot" – 允許單字「tot」與「mot」。 |
| 不屬於集合的字元 | [^] | [^t]"ot" – 允許單字「cot」、「lot」等,但不允許單字「tot」。 |
| 空格(在集合內) | \s | [A\s] 僅允許字母 A 或空格。 |
| 任意次數的重複(套用於左側的表示式或子表示式) | {-} | [AB74]{-} – 允許由字元 A、B、7、4 所組成的任意長度組合。 |
| 重複 n 次 | {n} | N{2}"th" 允許例如 25th、84th、11th 等單字。 |
| 重複 n 到 m 次 | {n-m} | N{1-3}"th" 允許例如 5th、84th、111th 等單字。 |
| 重複 0 到 n 次 | {-n} | N{-2}"th" 允許例如 84th、5th 等單字。 |
| 重複 n 次以上 | {n-} | N{2-}"th" 允許例如 25th、834th、311th、34576th 等單字。 |
| 子表示式 | () | |
| 減號符號 | [\-] | |
| 反斜線符號 | [\\] | |