Concatenate two or more attributes of the same node of a XML by XSL

krhodez

New Member
XML to XML by XSL Transformation where I want to concatenate multiple attributes like:Sample Case:\[code\]<Sample> <Date Year="2012" Month="9" Day="21"/> <Time Hour="6" Minute="6" Second="6"/></Sample>\[/code\]Required Output:\[code\]<Sample> <Date>9/21/2012</Date> <Time>6:6:6</Time></Sample>\[/code\]
 
Back
Top