Find repeated words in your text
Paste any text to see every word that repeats, along with how many times it appears, sorted most-frequent first. It is useful for tightening prose, spotting accidental double words, and checking keyword overuse in writing or SEO copy.
How it works
The tool splits your text into Unicode word tokens — sequences of letters, numbers and apostrophes — so contractions like “don’t” stay whole and accented or non-Latin words are handled correctly. It then counts how often each token appears. Two options shape the result:
- Case-insensitive (default on): “The” and “the” are treated as the same word.
- Minimum word length: words shorter than the set length are skipped, so you can ignore filler like “a” or “to”.
Any word appearing more than once is listed with its count, ordered most-frequent first and then alphabetically.
Example
Scanning the sentence “The the quick brown fox jumps over the lazy dog. The dog was not amused, not at all.” (case-insensitive):
| Word | Count |
|---|---|
| the | 4 |
| dog | 2 |
| not | 2 |
The four occurrences of “the” — including the accidental “The the” at the start — stand out immediately. Everything runs locally in your browser, so your drafts and documents stay private.