Hi all
I am using xslt1.0, i want to find whether the node present inside a xml file or not.It may be as parent, child or anywhere.Is there any xpath or function to find it..
Please help me..Thanks in advance
Hi all I am using xslt1.0, i want to find whether the node present
Share
If you want to check if a specific node is present ANYWHERE in the document. You can just use
//nodenamewhich will return a nodeset of all Nodes named “nodename” anywhere in the document.hope that helps.