Wildcard Patterns in Word Finder
How the ? and * wildcards really work, with worked examples.
Master two symbols and you can describe almost any word-shape search.
Wildcards turn a word finder into a pattern engine. Two symbols — ? for a single unknown letter and * for any number of letters — cover almost every real search you need.
Part of: Pattern & Puzzle Solvers
Quick answer
Master two symbols and you can describe almost any word-shape search.
Key points
- ▸ ? stands for exactly one letter. "C?T" matches CAT, COT, CUT — but not CART.
- ▸ * stands for zero or more letters. "C*T" matches CT, CAT, CART, CONTEST.
- ▸ Mix them: "?A*E" matches any word whose second letter is A and last letter is E.
- ▸ Anchors matter: "*ING" finds ING-endings; "ING*" finds ING-starters.
- ▸ For Wordle-style searches, ? is almost always what you want — fixed length, unknown letters.
Examples
- C?TThree letters, middle unknown. Matches CAT, COT, CUT.
- C*TStarts C, ends T, any middle. Matches CT, CAT, COAST, CONTEST, CONFIDENT.
- ?A??EFive letters, second A, fifth E. Useful Wordle pattern when you know two green letters.
- *TIONAny word ending in TION — good for finding long suffix words.
When to use which tool
- Word Finder by LettersThe general wildcard-pattern tool. Supports ? and * for any length.Find words from available letters or match a fixed-length pattern with single-character wildcards.
- 5-Letter Word FinderLocks length to 5. Use ? only (no * needed) for Wordle-style patterns.Find every 5-letter word matching a pattern. Use ? for unknown letters — perfect for Wordle hints and crossword fills.
- Crossword SolverTakes the grid slot pattern with dots or ?s for blank squares.Solve crossword clues by pattern. Enter the letters you have and use ? for unknown squares — every matching word appears instantly.
Related
- Word Finder by LettersFind words from available letters or match a fixed-length pattern with single-character wildcards.
- Crossword SolverSolve crossword clues by pattern. Enter the letters you have and use ? for unknown squares — every matching word appears instantly.
- Wordle SolverNarrow Wordle candidates by entering greens (letter + position), yellows (letter present but wrong spot), and gray letters.
- How to Use a 5-Letter Word FinderFrom a few known letters to a clean shortlist.
- Crossword Pattern LogicTurning a half-solved grid into a precise solver query.
Frequently asked questions
› What is the difference between ? and *? Definition
? is exactly one letter. * is any number of letters, including zero. Use ? when you know the word's length; use * when you don't.
› Can I combine wildcards with known letters? Trust & accuracy
Yes — that is the point. "PR??Y" finds 5-letter words starting PR and ending Y. The more letters you pin down, the fewer matches you get.
› How should I use this guide with a Kefiw tool? How-to
Use the guide as the plan and the linked Kefiw tool as the check. Read the steps first, try the move manually, then use the tool to compare outputs, catch edge cases, and decide whether the result actually fits your task.
› What mistake do tool guides help avoid? Troubleshooting
Tool guides help avoid using a utility mechanically without understanding what you are trying to accomplish. Most word, writing, and text utilities are fast, but speed can hide context mistakes. Know whether you are solving a puzzle, cleaning copy, drafting a line, or checking a rule.
› Can a tool guide help me learn the skill? How-to
A tool guide can help you learn if you pause before accepting the output and ask why it worked. Compare your first guess with the tool result, look for the rule or pattern, and repeat that review. Passive copying solves one task; active review builds the skill.