XSLT
I have a file that contains data as:
Reporting for Date:2011-06-28
ID , Name , Type
1 , A , T1
2 , B, T1
I need to copy the date on each row, as a new column (as below)
ID , Name , Type Reporting Date
1 , A , T1, 2011-06-28
2, B, T1, 2011-06-28
How can I do this in XSLT 2.0?
|