Word Counter
Count words, characters with and without spaces, sentences, and paragraphs in your text instantly as you type, with live totals processed in your browser.
Key Terms (Click to expand)
Word count
Number of text tokens separated by whitespace.
Character count
Total text length including spaces and line breaks.
Characters without spaces
Character count after removing whitespace characters.
Sentence count
Heuristic count based on sentence-ending punctuation and spacing.
Paragraph count
Number of text blocks separated by one or more blank lines.
Tool
Methodology
Word-counter metrics are derived from deterministic text parsing rules:
- Words use whitespace-token splitting after trimming leading/trailing spaces.
- Characters include all text content, and an optional mode can display the count without whitespace.
- Sentences use punctuation-boundary heuristics (
.,!,?). - Paragraphs are split on blank-line boundaries.
Using This Tool Well
When to use this tool
- Submission target check: see whether a 740-word draft needs trimming before a 700-word application or abstract limit.
- Character-budget check: compare characters with spaces against a 160-character message or platform field limit.
- Structure audit: use sentence and paragraph counts to spot a 900-word draft that is technically short enough but still reads as one dense block.
How to read the result
Words and characters are the hard counters. Sentences and paragraphs are editing signals. Match the character toggle to the rule you are following, then use the sentence and paragraph counts to decide whether the text is merely short enough or actually readable.
Common mistakes
- Misreading the space toggle: `hello world` is 11 characters with spaces and 10 without, and that one-character gap scales across every word break.
- Expecting editor-perfect sentences: 1 abbreviation such as "etc." or "Dr." can add punctuation that a simple heuristic may read differently than a human editor.
- Pasting soft line breaks: 5 visual lines with no blank line between them can still count as 1 paragraph, not 5.
Reviewed by Leonardo, Software Engineer
Last reviewed June 23, 2026
Premises and Limitations
- Word count uses whitespace tokenization and may differ from editor-specific definitions.
- Sentence count is heuristic and based on punctuation boundaries.
- Paragraph count treats blank-line groups as paragraph separators.
FAQ
How are words counted?
Words are counted as whitespace-separated tokens after trimming leading and trailing spaces.
Do line breaks change the count?
Line breaks affect paragraph totals and are treated as whitespace for word and character-without-spaces calculations.
Are hyphenated words counted as one or more words?
Hyphenated text is treated as one token unless whitespace splits it into separate tokens.