I am having a template xml file like below. $SourceValue $DestValueThis $Value will be replaced by csv file content.The csv file will be looking like below\[code\]SourceValue,DestValueC:\Test,C:\Test2\[/code\]I have written a logic to replace the value of XML. But some times user needs to pass SourceValue or DestinationValue by 2 or 3 columns like below\[code\]SourceValue,DestValueC:\,C:\Test,Test2 ,Test3\[/code\]So now the xml should be look like below\[code\]<File> <Source>C:\</Source> <Source>Test</Source> <Destination>C:</Destination> <Destination>Test2</Destination> <Destination>Test3</Destination></File>\[/code\]Is there any way to copy the tag based on csv file content then create full xml?