From the following xml, I read the Version attribute.
<BatchTable>
<UUThref
SocketIndex='0 - CCM'
UUTResult='Passed'
URL='C:\OverrideCallbacks_BatchReport[4 16 2012][5 44 41 PM].xml'
FileName='OverrideCallbacks_BatchReport[4 16 2012][5 44 41 PM].xml'
ECAFailCount='1'
Version='StationPartNumber=55555 StationSerialNumber=2222 TPSPartNumber=1234'/>
</BatchTable>
The value in the Version attribute is dynamic and user can add any length of strings. How can I split the values and display them on separate rows. So that it displays like this
StationPartNumber=55555
StationSerialNumber=2222
TPSPartNumber=1234
Currently on reading the version value it displays as:
StationPartNumber=55555 StationSerialNumber=2222 TPSPartNumber=1234
If any special character is required to be added between the values then I can have the user ensure it is added so that splitting can be easier. Currently "\n" is being added between concatenation but xsl seems to pick the values and remove any white spaces.