Truncate text by word or character limit with a custom suffix, or extract the top N sentences by word-frequency relevance — all client-side, nothing uploaded.
Most long texts contain a handful of sentences that carry almost all the meaning, surrounded by context, transitions and supporting detail. Text Truncator & Summarizer gives you two ways to cut to those sentences. Truncate mode hard-cuts the input at a word or character count you set and attaches a suffix: the ellipsis that signals a preview, a Read more… label for a link, or nothing at all for a database insert. Extract mode ranks every sentence in the document by how many of its content words are prominent across the whole piece, then returns the top N in their original order so the result reads as prose rather than a list of fragments.
Both modes run entirely in the browser. Paste a 50,000-character article and neither mode uploads a single character. The word-frequency scorer strips stop words before ranking, so common connectives like and, the and with do not inflate a sentence score. Only the distinctive vocabulary the author actually chose counts toward it.
The passage on screen when the page loads reads “Sunlight filtered through the canopy in long amber shafts, catching the dust motes that drifted above the forest floor…” at 87 words. Switch to Truncate, leave the preset at 50w and the suffix at … (ellipsis). The output ends at the last complete word before position 50 and appends the ellipsis: the tool backs up to the nearest word boundary rather than cutting mid-word, so the break is always clean. Switch to Character count and enter 160 to see the meta-description length Google recommends. The output stops at the last word that fits inside 160 characters and appends the suffix. Now flip to Extract Key Sentences and set sentences to keep to 2. The scorer picks the two sentences whose content words appear most frequently across the whole passage and returns them in original document order.
Extract mode splits the document on sentence-ending punctuation, builds a word-frequency table across the entire text (excluding 80 stop words), normalises every count against the highest-frequency content word, then scores each sentence as the mean normalised frequency of its own content words. A sentence crammed with rare words scores low; a sentence that reuses the three or four most prominent terms scores high. The top N sentences sort back into document order before output, which preserves the flow of the argument. Setting N to 1 finds the single sentence the scorer considers the thesis; setting N to 5 on a 20-sentence article gives a quarter-length extract.
Truncation Settings
Limit by
Common presets
Trailing suffix
Truncated output
The finance team met with Dr. Alvarez before the 9 a.m. review. She flagged three line items that looked off. "These numbers don't add up," she said. Was the Q3 forecast really that far from actual spend? The team spent the rest of the morning reconciling the ledger against Q3.…