Javascript Diff Algorithm

by: John Resig

Javascript Diff Algorithm

Using an idea grabbed from a mailing list post, I implemented the diff algorithm discussed in the following paper (free registration required):

P. Heckel, A technique for isolating differences between files
Comm. ACM, 21, (4), 264--268 (1978).

The implementation, itself, has two functions, one of which is recommended for use:

diffString( String oldFile, String newFile )
This method takes two strings and calculates the differences in each. The final result is the 'newFile' marked up with HTML (to signify both deletions from the oldFile and additions to the newFile).

Sample Code

  1. document.body.innerHTML = diffString(
  2.    "The red brown fox jumped over the rolling log.",
  3.    "The brown spotted fox leaped over the rolling log"
  4. );

Sample Output

The red brown spotted fox jumped leaped over the rolling log.

Projects Using this Code:

Downloads



Article published Tuesday, 22nd August 2006
© 2008 NetVisits, Inc. All rights reserved.