Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
1
Answer
Unique value from a list in xslt
Ani
7y
287
1
Reply
From below xml I want to pick only distinct values using xslt
Example data:
<student1>
<skills>
<skill>ASP</skill>
<skill>SQL</skill>
<skill>ASP</skill>
<skill>ASP.net</skill>
<skill>WCF</skill>
<skill>ASP</skill>
</skills>
</student1>
<student2>
<skills>
<skill>Java</skill>
<skill>Sql</skill>
<skill>jQuery</skill>
<skill>HTML</skill>
<skill>Java</skill>
</skills>
</student2>
Expected result
<student1>
<skills>
<skill>ASP</skill>
<skill>SQL</skill>
<skill>ASP.net</skill>
<skill>WCF</skill>
</skills>
</student1>
<student2>
<skills>
<skill>Java</skill>
<skill>Sql</skill>
<skill>jQuery</skill>
<skill>HTML</skill>
</skills>
</student2>
Please help me on this
Post
Reset
Cancel
Answers (
1
)
Next Recommended Forum
How to use data factory in azure portal
How to find SSH keys in azure?