| 任意字元 | * | "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 等字詞。 | | |
| 子表達式 | () | | | |
| 連字號符號 | [\-] | | | |
| 反斜線符號 | [\\] | | | |