Frequently Asked Questions
How does this text diff checker work?+
Paste your original text on the left and the changed version on the right. The tool compares them line by line using a longest-common-subsequence algorithm, then highlights the specific words that changed within modified lines.
What do the colors mean in the diff view?+
Green rows and highlights are lines or words added in the right-hand text. Red rows and highlights (shown with strikethrough) are lines or words removed from the left-hand text. Unhighlighted rows are unchanged.
Can I ignore whitespace or letter case when comparing?+
Yes. Turn on Ignore whitespace to treat lines that only differ by leading, trailing, or repeated spacing as identical, and Ignore case to treat "Hello" and "hello" as the same line.
Can I use this to compare code?+
Yes. Any plain text works, including source code, JSON, config files, or log output. The comparison is purely textual, so indentation and formatting differences are shown unless you enable Ignore whitespace.
Is there a limit to how much text I can compare?+
The comparison runs in your browser using a line-by-line algorithm, so very large files (thousands of lines on both sides) may be slow. For typical code snippets, config files, or paragraphs it's instant.
Does this tool send my text anywhere?+
No. Both text boxes and the diff are computed entirely in JavaScript in your browser. Nothing you paste is uploaded, logged, or stored — refresh the page and it's gone.