I am using XSLT with C#.
My input tag is in the format like
<td>....</td>
<td>uma</td>
I need to convert td to entry tag and check if it contains the following sequence ...
so my output will be as follow.
<entry></entry>
<entry>uma</entry>
How to check if the tag contains only ... and replace with empty.
Tag always contains ..., it is static.
Try the following