Hi friends, in my xml file elements are not constant like say my file is
<alpha>
<a>...</a>
<b>...</b>
<c>...</c>
</alpha>
<alpha>
<a>...</a>
<c>...</c>
</alpha>
<alpha>
<a>...</a>
<b>...</b>
</alpha>
<alpha>
<a>...</a>
<b>...</b>
<c>...</c>
</alpha>
I meant to say i want to maintain all elements in my xml file by creating the non existing element in the set and should skip if any of the element is existed using xslt. Pls. help me to solve this problem.
Want OutPut Like as below for non existing elements with value 0 by creating in xslt.
**
<alpha>
<a>...</a>
<b>...</b>
<c>...</c>
</alpha>
<alpha>
<a>...</a>
<b>0</b>
<c>...</c>
</alpha>
<alpha>
<a>...</a>
<b>...</b>
<c>0</c>
</alpha>
<alpha>
<a>...</a>
<b>...</b>
<c>...</c>
</alpha>
**