A text diff tool compares two texts line by line to find differences. Common uses: comparing code version changes, checking document modifications, validating config file changes, comparing data export results, checking translation consistency, and understanding collaborative changes.
Green background = lines only in left text (removed); Red background = lines only in right text (added); White = identical lines; Yellow highlights = character-level differences. This matches Git's diff display.
Ignore spaces trims whitespace before comparison. Ignore case treats uppercase/lowercase as identical. Both can be enabled together.
Yes. Disable 'ignore spaces' for indentation-sensitive languages. Best results under 100 lines.
Uses an improved LCS (Longest Common Subsequence) algorithm to find matching lines, then identifies additions/deletions with character-level inline diff highlighting.