Count syllables in your text. Perfect for poetry, songwriting, and checking readability.
Tool Notes is a Supporter feature.
Type or paste the text you want to analyze.
See the total syllable count and per-word breakdown.
Copy the syllable statistics to your clipboard.
Uses vowel pattern analysis and English pronunciation rules to estimate syllable count. The algorithm counts vowel groups (consecutive vowels like 'ea' count as one syllable), applies exceptions for silent 'e' at word endings, and handles special cases like '-le' endings. This heuristic approach achieves ~95% accuracy for common English words.
Splits text into words using whitespace and punctuation as boundaries. Each word is processed individually to count its syllables. Punctuation is stripped before analysis to ensure accurate counting. The word-by-word breakdown allows you to see which specific words contribute to your total syllable count.
The core algorithm identifies vowel groups (a, e, i, o, u, y when acting as vowel). Each group of consecutive vowels typically represents one syllable. Special rules handle diphthongs (two vowels making one sound like 'oa' in 'boat'), triphthongs (three vowels), and silent letters. Common patterns are pre-programmed: -ed endings usually add 0 syllables unless preceded by 't' or 'd'.
Provides total syllable count, word count, and average syllables per word. All processing happens entirely in your browser using JavaScript regular expressions and pattern matching. No server communication occurs - the tool works completely offline and ensures complete privacy.
The syllable counter uses sophisticated algorithms based on English pronunciation patterns and vowel counting heuristics. While it handles most common English words accurately (95%+ accuracy), some proper nouns, technical terms, or unusual words may have slight variations. For critical applications like academic poetry analysis, verify results for uncommon words.