<ROWS>
<ROW oid="28439">
<EFL eid="8" fid="27672" count="2" Name = "A : bbb">
<MK id="3" val="0"/>
<MK id="11" val="0578678"/>
</EFL>
</ROW>
</ROWS>
I have the above xml, i want to have the following loop in XSL
if Name attribute in EFL tag Exists And Not Empty Then
Display the value of Name attribute
Else
do something (that i know how to write)
Endif
Please note that this IF Condition will be written within for-each loop on Row tag. So, that 's why we can not use Match.
Thanks