XSLT space seperated and adding an element

doneboriginal

New Member
I have a query in the xml and xsltThe below is the Input XML \[code\]<?xml version="1.0" encoding="UTF-8"?> <Employer> <Employees> <EmployeesDetails>van ind 26%</EmployeesDetails> </Employees> <Employees> <EmployeesDetails>van ind</EmployeesDetails> </Employees> </Employer>\[/code\]The above is my input filethe below is my output file\[code\]<?xml version="1.0" encoding="UTF-8"?><Employer> <Employees> <Names>van</Names> <Location>ind</Location> <Weather>26</Weather> </Employees> <Employees> <Names>van</Names> <Location>ind</Location> <Weather>100</Weather> </Employees></Employer>\[/code\]How can i apply the below XSLT to the above xml input please any one help me hereRegardsM
 
Back
Top