Advertisement
Guest User

xml tree

a guest
Jul 14th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.65 KB | None | 0 0
  1. <root>
  2.    <parent>
  3.       <child>
  4.          <string>A</string>
  5.          <string>B</string>
  6.       </child>
  7.       <child>
  8.          <string>C</string>
  9.          <number>1</number>
  10.          <number>2</number>
  11.          <grandchild>
  12.             <string>DD</string>
  13.             <substring>EE</substring>
  14.             <number>33</number>
  15.          </grandchild>
  16.       </child>
  17.    </parent>
  18.    <parent>
  19.       <child>
  20.          <string>F</string>
  21.          <date>2015-02-12</date>
  22.       </child>
  23.       <nephew>
  24.          <string>G</string>
  25.       </nephew>
  26.    </parent>
  27.    <uncle>
  28.       <niece>
  29.          <string>H</string>
  30.       </niece>
  31.    </uncle>
  32. </root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement