Dear Friend, I am having two XML files. I would like to
compare the hierarchy of elements & its attributes and throws the
difference in a error file. I don’t want to compare the content.
Heirarchy of elements in both the XML files should match. Here is an example: File 1: <?xml version=”1.0”?> <html> <body> <fm> <p>This is a simple <list> <li>This is a simple </list> </fm> </body> </html> File 2: <?xml version=”1.0”?> <html> <body> <fm lang=”es”> <p>This is a <strong>simple</strong> <p>This is a simple </fm> </body> </html> Difference between the 2 files are:
Regards, Kumar V. |