I'm new to XSLT. this may be a simple question,
example : XML
<doc>
<sec id="sec_2" sec-type="norm-refs">
</doc>
I need to know is there any <sec> node containing attribute sec-type='node-refs', exist or not in original XML document.
I need to know is there any I'm new to XSLT. this may be a simple question, example : XML I need to know is there any Copyright © 2021 Jogjafile Inc.
XSLT - check attribute is exist or not
133 Views
Asked by
sanjay
At
<doc>
<sec id="sec_2" sec-type="norm-refs">
</doc>
<sec> node containing attribute sec-type='node-refs', exist or not in original XML document. There are 1 best solutions below
Related Questions in XML
Related Questions in XSLT
Related Questions in XSLT-1.0
Related Questions in XSLT-2.0
Trending Questions
Popular Questions
This is a simple XPath:
The
@symbol indicates that you want an attribute that matches, not an element. The square brackets indicate you want something that matches that but the selector returns what comes before the square brackets.