Skip to content
TypeParser
All tools

Word Frequency

Count word and letter frequency.

beats textanalyzer.org edge: Stopword filter + CSV export
text
Guide

About Word Frequency

Count word and letter frequency in any text. Top-100 words and per-letter frequency table. Optional stopword filter, case-insensitive matching, exportable as CSV. Useful for editing prose (spotting overused words), keyword density audits, and language statistics.

What word frequency reveals

In editing, frequency exposes overuse. If “actually” or “basically” lead the list (after stopwords), edit them out. If your project’s name dominates a marketing draft, the page is too repetitive.

In SEO, frequency matters less than it did, but density auditing (1-2% for primary keywords) is still a sanity check.

In cryptanalysis, frequency analysis is the historical first attack on substitution ciphers — match observed frequencies to known language statistics.

What this tool gives you

  • Top-100 words with count and percentage
  • Letter frequency A-Z bar chart
  • Bigram count (top consecutive pairs)
  • Sentence count, average length
  • CSV export for further analysis

Common workflows

Edit prose. Paste a draft, toggle stopwords off, look at the top non-trivial word — if it appears 30 times in a 500-word article, edit half out.

Audit a landing page. Paste body copy, check for keyword density. Brand name should appear naturally — not in every paragraph.

Cryptanalysis exercise. Substitute frequency-analyze a Caesar cipher (try the ROT13 tool first). Most-frequent letter likely maps to “e”.

Compare drafts. Run two versions through; see which themes dominated.

Frequently asked questions

What counts as a word?
Whitespace and punctuation-delimited tokens. Apostrophes ("don't") stay together; hyphens ("on-call") stay together if both halves are alphabetic.
What is a stopword?
Common function words ("the", "a", "of", "to") that dominate frequency without conveying topic. Toggle the stopword filter to see content words instead.
Case-insensitive?
Default yes — "The" and "the" count as the same word. Toggle off for case-sensitive analysis.
Letter frequency?
Counts each letter (A-Z) independently of word boundaries. Useful for cryptanalysis (English letter frequency: e ≈ 12.7%, t ≈ 9.1%, a ≈ 8.2%).
Export to spreadsheet?
Yes — CSV download with rank, word, count, percentage. Drop into Excel/Sheets for charts.
How big a text?
Up to about 10MB cleanly. Above that, use a real text-analysis library.

Related tools

Last updated: 2025-01-15