Skip to content

Instantly share code, notes, and snippets.

/xml1

Created August 26, 2016 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/63f59a35da44479b1141bbb2d19caa14 to your computer and use it in GitHub Desktop.
Save anonymous/63f59a35da44479b1141bbb2d19caa14 to your computer and use it in GitHub Desktop.
same xml if order doesn't mater?
<root>
<leaf1>
<subleaf id="test"></subleaf>
</leaf1>
<leaf2>
<subleaf id="second"></subleaf>
<subleaf id="first"></subleaf>
</leaf2>
</root>
<root>
<leaf2>
<subleaf id="first"></subleaf>
<subleaf id="second"></subleaf>
</leaf2>
<leaf1>
<subleaf id="test"></subleaf>
</leaf1>
</root>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment