I am trying to convert xml file into csv file. How to read and parse xml file and convert into csv? Is there any package to convert xml into csv.
<services>
<service>
<ServiceID>1</ServiceID>
<ServiceName>eVoting Booth</ServiceName>
</service>
<service>
<ServiceID>2</ServiceID>
<ServiceName>Justice of the Peace</ServiceName>
</service>
<service>
<ServiceID>3</ServiceID>
<ServiceName>Library</ServiceName>
</service>
<service>
<ServiceID>4</ServiceID>
<ServiceName>Customer Service</ServiceName>
</service>
<service>
<ServiceID>5</ServiceID>
<ServiceName>Migrant Service</ServiceName>
</service>
</services>
I want result as
ServiceID | ServiceName
1 | Library
2 | Justice of the Peace