I have XML in the following format:
<Order>
<Customer>
<Name>kapil</name>
<AddressLine1>ABC</AddressLine1>
<PostCode>12345</postCode>
</Customer>
<Customer>
<Name>Soniya</name>
<AddressLine1>XYZPER</AddressLine1>
<PostCode>54321</postCode>
</Customer>
<Customer>
<Name>kapil</name>
<AddressLine1>ABC</AddressLine1>
<PostCode>12345</postCode>
</Customer>
</Order>
And I want the text file in a particular format as
Soniya XYZPER 54321
Kapil ABC 12345
I want to do it via XSLT.