Enter the word part for which you wish to search (regular expressions accepted)
- The caret character '^' matches the beginning of the word.
- The dollar-sign character '$' matches the end of the word.
- To search for one of a set of letters, use square brackets, like '[abcde]' or '[a-e]' (one of a, b, c, d, or e).
- To search for zero or more of an item, use '[a-e]*'
- For one or more, use '[a-e]+'
- To group letters together, use parentheses along with '*' or '+', such as 'd(abc)*', which would match 'd', 'dabc', 'dabcabc', etc.
- Use [[:cons:]] to match a consonant, and [[:vowel:]] to match a vowel.
|