I have input like following snippet,
Input Snippet :
<div class="a">
<table>
<col width="4" />
<col width="8" />
<col width="5" />
<tbody>
<tr>
<td>ABC</td>
<td>DEF </td>
<td>GHI</td>
</tr>
</tbody>
</table>
</div>
<div class="x">
<table>
<col width="5" />
<col width="8" />
<col width="8" />
<tbody>
<tr>
<td>ABC</td>
<td>DEF </td>
<td>GHI</td>
</tr>
</tbody>
I am currently at table inside of the div class="a" tag, and I would like check either the immediately following sibling that is div and it's first child is table or nothing. I wrote the following XPath: ./../following-sibling::div[1]/node()[1] ) = 'table'.
I am getting expected output in altova XMLSpy, but in saxon parser not giving exact output becasue there is some space between the <div> and <table>, and that space is treated as a text node.
How can I avoid the space between the tags, or are there any other solutions?
snippet Code :
<xsl:choose>
<xsl:when local-name(./../following-sibling::div[1]/node()[1] ) = 'table' ">
loagic-1
</xsl:when>
<xsl:otherwise>
logic-2
</xsl:otherwise>
</xsl:choose>