Tested tool guide
Text and writing tools
Checked August 16, 2026
What Text Statistics Tool does, with a checked example
This tool takes a block of text and returns its vital statistics: word, sentence, and syllable counts, unique words, vocabulary richness, and a grade level. Counts are mechanical - words split on spaces, sentences end at terminal punctuation, syllables are estimated from the written word - so the same input always gives the same output. What surprises most users is the grade level: it comes from a readability formula, not a judgment, and different formulas score the same text differently. On very short texts the number can swing especially wide.
Worked example
A concrete input and expected output from the current implementation.
Input
A quick brown fox jumps over the lazy dog.
->
Expected output
Words: 9 | Sentences: 1 | Syllables: 11 | Unique words: 9 | Type-token ratio: 1.00 | Letters: 33 | Grade level: ~2.3 (Flesch-Kincaid)
The counts follow standard conventions: 9 words in one sentence; over and lazy carry two syllables each and the rest one, for 11 total; no word repeats, so all 9 are unique and the type-token ratio is 9/9 = 1.00; the text contains 33 letters. The grade level applies the Flesch-Kincaid formula, 0.39 x (words/sentences) + 11.8 x (syllables/words) - 15.59 = 0.39 x 9 + 11.8 x 11/9 - 15.59, about 2.3. Other formulas give nearby but different numbers, so treat grade level as approximate.