What it does
Analyzes any block of text and reports word count, character count (with and without spaces), sentence count, paragraph count, and an estimated reading time.
Try it
How it works
- Words: text is split on whitespace, empty tokens discarded.
- Characters: total length of the text, and again with all whitespace removed.
- Sentences: count of
.,!, and?that end a chunk of text. - Paragraphs: count of non-empty blocks separated by blank lines.
- Reading time: word count divided by an average reading speed of 200 words per minute, rounded up to the nearest minute.
Everything is computed locally, live as you type — nothing is uploaded anywhere.