I have below sample data stored as XML document.
<List><FirstName>abc</FirstName><LastName>def</LastName></List>
I want to format the file in below format and save as XML document.
<List>
<FirstName>
abc
</FirstName>
<LastName>
def
</LastName>
</List>
-----------------
Any help much appreciated.