0
首先,我對XSLT不太好。有人可以幫我弄這個嗎?xslt連接字段加回
如何連接節點中的兩個字段,然後將其作爲新字段添加到原始節點?例如,
<Contacts>
<Contact>
<fName>Mickey</fName>
<lName>Mouse</lName>
</Contact>
<Contact>
<fName>Daisy</fName>
<lName>Duck</lName>
</Contact>
</Contacts>
到
<Contacts>
<Contact>
<fName>Mickey</fName>
<lName>Mouse</lName>
<fullName>MickeyMouse</fullName>
</Contact>
<Contact>
<fName>Daisy</fName>
<lName>Duck</lName>
<fullName>DaisyDuck</fullName>
</Contact>
</Contacts>
在此先感謝,
甜。謝謝。 – gishman