I'm looking for some tool to give me a recursive diff of two arrays. What I envision is a web page with two color-coded tree-structures. On each tree, green are parts of the array which match in both arrays, and red is for parts of each that don't match the other. Something like the output of dBug
I have some code that gives me a nested array to populate a report. I'm developing a new method that should be faster, but I need to test the values and also the structure, to make sure it gives output identical to the old method.
Is there something out there that I can use? Or do I need to write this? Or is there another way to accomplish my goals?
wdiffovervar_exportoutput should do the trick...wdiff? Because in the output, say from lines 0-30 it will be identical, and from the end back to line 36 it will be identical. It's only those middle lines that will be different -- 3 versus 6. If wdiff looks at this, will it get tripped up?