About This Tool
Spotting differences between two versions of text by reading them side by side is slow and error-prone. This diff checker does it instantly โ paste the original and modified text, and every change is highlighted in color.
Added lines show in green, removed lines in red, and modified lines show exactly which words changed within the line. The summary tells you how many lines were added, removed, and left unchanged so you can gauge the scope of changes at a glance.
Use it for comparing drafts of an article, checking config file changes, reviewing code edits, verifying translations, or any time you need to answer "what changed between these two versions?"
How to Use
1. Paste the original text in the left (top) box
2. Paste the modified text in the right (bottom) box
3. Differences are highlighted automatically as you type
4. Green = added, Red = removed, highlighted words = specific changes
5. Use options to ignore case or trim whitespace
6. Click "Swap" to reverse the comparison direction
Formula
Diff is computed using the Longest Common Subsequence (LCS) algorithm.
Modified lines are detected by pairing adjacent remove/add blocks.
Word-level changes are highlighted within modified lines.