in reply to string diff and compare
So I found an interesting failure of this approach when I was trying out this on more data. It occurs when I have the following sort of data.
__DATA__ I am me. I am not me.
Essentially, I end up creating the following output.
I am<<span>/span> me. I am <span>not</span> me.
The problem is due to the fact that the space before the not (in "am not me"), and the space after the not are not the same space, but the matching can't tell that and because you search from the back of the string first, and then the front of the string, yet both are fine with the space between "am me." so the offsets are off by one.
fixing now... a quick solution is to arbitrarily add one to the negative index, but it's clearly imperfect, because when this isn't the case, it'll highlight (span) one extra matching character.
|
|---|