I have a csv file with data like
abc1,E,WEL,POI,<DeData L1="Websales" </DeData>
I want to extract individual columns and save into xml file as
<Data>
<element1>abc1</element1>
<element2>E</element2>
<element3>WEL</element3>
<element4>abc1</element4>
<DeData L1="Websales" </DeData>
</Data>
and each row from csv file should be saved as separate xml file.
Any pointers would be very helpful.
>in your XML file.