vote up 2 vote down star

I have 2 strings that I'd like to compare, and return the positions of the different characters in the second string. For instance, if I have 1. "The brown fox jumps over the lazy dog" and 2. "The quick brown fox jumped over the lazy dog", I want it to highlight "quick" and "ed". What's the best way to go about this in PHP?

flag
This might be a more complex problem than you realize. How would you "highlight" the differences if string two had part of string one removed? Do you need to indicate additions, deletions and possibly modifications? – Prestaul Sep 18 '08 at 4:00

3 Answers

vote up 3 vote down check

This might do the trick:

PHP Inline Diff

Text_Diff

link|flag
vote up 2 vote down

The algorithm you're looking for is the "longest common substring problem". From there it is easy to determine the differences. See Wikipedia:

http://en.wikipedia.org/wiki/Diff#Algorithm

link|flag
vote up 2 vote down

This is going to give you a headache unless you define your porblem more clearly to start! Let's assume that str1 is "Amanda and Amy", and str2 is "Amanda and Amylase Amy".

Is your function to return "lase Amy" or "Amylase "?

Properly defining your problem is the first step towards a solution!

link|flag
It doesn't matter in this case. Both solutions would mean the original was changed and it would show the change. I would assume returning "lase Amy" would be easier since the original string is unbroken and at the start of the second string. – David Sep 18 '08 at 3:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.