2

In a similar question, it is described how to get the differences of two XML files using Microsoft XmlDiffPatch. But it is doesn't say how I can interpret the output.

I have two xml files:

<MN>
   <MN>
      <PUNC>
         <w>#</w>
      </PUNC>
      <MN>
         <N>
            <N>
               <w>مسعود</w>
            </N>
            <N>
               <w>شجاعی</w>
            </N>
         </N>
         <N>
            <w>طباطبایی</w>
         </N>
      </MN>
   </MN>
   <PUNC>
      <w>#</w>
   </PUNC>
</MN>

And

<S>
   <MN>
      <PUNC>
         <w>#</w>
      </PUNC>
      <MN>
         <N>
            <w>مسعود</w>
         </N>
         <N>
            <w>شجاعی</w>
         </N>
         <N>
            <w>طباطبایی</w>
         </N>
      </MN>
      <PUNC>
         <w>#</w>
      </PUNC>
   </MN>
</S>

The result of XmlCompare is:

enter image description here

Now I want to get the number of removes, changes, adds and moves from this output. How can I do this?

Community
  • 1
  • 1
Ahmad
  • 8,811
  • 11
  • 76
  • 141

0 Answers0