You can use these formats to generate your list :
If you want to search names that consist of a consonant and followed by a vowel and "xe", you can use this format :
- * - means [a-z].
- [0-9] - means 0, 1, 2, ..., 9.
- [a-z] - means a, b, c, d, ..., z.
- [a-z0-9] - means combination of [a-z] and [0-9].
- {*} - means [a-z] without q, v, w, x, y, z.
- {C} - means consonants.
- {C2} - means consonants without q, v, w, x, y, z.
- {C3} - means consonants without j, q, v, w, x, y, z.
- {V} - means vowels (a, e, i, o, u).
- You can define your own char set.
For example if you want "d, g, m, p", you can use [dgmp]
"{C}axe" (apply)
If you want to search names that consist of a consonant and followed by a vowel and "xe", you can use this format :
"{C}{V}xe" (apply)