vote up 0 vote down star

Hi all!

Say, I have var1 and var2 both with a string value. Var2 is a revision of var1 with minor changes: var1:

Hello, world1

var2:

Bye bye, world!

Now I want this output:

<span class="removed">Hello</span> <span class="new">Bye bye</span>, world<span class="removed">1</span><span class="new">!</span>

much like SO's way. How can I do this in php?

Thanks

flag

2 Answers

vote up 2 vote down check

I would suggest you take a look at Text_Diff on PEAR.

link|flag
It says 404 – Koning Baard XIV Aug 19 at 21:31
Seems to be a bad link, try pear.php.net/package/Text_Diff – Cal Jacobson Aug 19 at 21:31
1  
Fixed....seems like the "a href" syntax works, but the other syntaxes encode the underscore. – JW Aug 19 at 21:32
I'll take a look at it. – Koning Baard XIV Aug 19 at 21:40
vote up 0 vote down

Longest common subsequence problem. Once I found nice implementation in Python and translated it into PHP (because PHP arrays are quite memory expensive I had to sacrifice speed by using string to hold LCS matrix).

link|flag

Your Answer

Get an OpenID
or

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