Writing
Paragraph Counter
Last updated: June 19, 2026
A paragraph counter is a simple text utility that tallies the number of paragraphs in a block of text. It detects paragraphs by identifying line breaks and carriage returns, ignoring blank lines to ensure accurate counts. In addition to paragraph counts, the tool often displays the average number of words and sentences per paragraph, helping writers analyze the structural flow and readability of their content. It is widely used by students, novelists, and blog writers to structure essays and web articles.
Paste any text and we count the paragraphs, words, and sentences, plus the average words per paragraph. Useful for editing for rhythm, balancing essay sections, or hitting a target paragraph count.
Quick Answer
Count the number of paragraphs in your writing. Paste your text to instantly see paragraph counts, word averages, and overall text layout analysis.
Paragraphs are split on blank lines. A single line break is treated as a wrap within the current paragraph.
Paragraphs
4
80 words · 8 sentences
Examples
Three paragraph essay (300 words)
≈ 100 words/paragraph
Web article
typically 40–80 words/paragraph
Academic prose
often 100–200 words/paragraph
How it works
We split text on blank lines (two consecutive newlines) and count the resulting non-empty blocks. A single newline doesn 't end a paragraph — it's a line break within one.
Paragraphs · text.split(/\n\s*\n+/).filter(non-empty)
For source code, bullet lists, or single-newline-paragraph formats, insert a blank line between blocks before pasting.
Related Calculators
More tools from Writing
Frequently asked questions
A blank line. Specifically, two newlines with optional whitespace between them. So pressing Enter once doesn't start a new paragraph (it's a line break within the current one); pressing Enter twice does. This matches how most editors, blog platforms, and Markdown define paragraphs.
Because in most prose conventions, a single newline is a line wrap, not a thought break. Think of poetry, addresses, or signature blocks — each line is part of the same paragraph. If your tool uses single newlines for paragraphs (e.g., some Markdown editors with hard-wrap), insert a blank line between paragraphs before pasting.
It'll count something, but the result will be approximate. Code and bulleted lists often use single newlines without blank lines between items, which compresses to one paragraph here. For prose — essays, blog posts, articles, novels — the counter is reliable.
Web writing tends toward 40–80 words per paragraph; print and academic prose can run longer. Long uniform paragraphs make a page look like a wall of text and tire readers; vary length deliberately. The number is a tool for catching unintended monotony, not a rule.
Related calculators
Writing
How Many Sentences are in a Paragraph?
Learn how many sentences are in a paragraph and use this interactive text analyzer to count sentences and words.
Writing
Word Counter
Count words, characters, sentences, and paragraphs in real time, with reading and speaking time estimates.
Writing
Sentence Counter
Count sentences, words, and characters in any text, with average words per sentence — useful for editing for flow.