i want to capture all tags named 'STRONG' i can use <STRONG.*?</STRONG>
this is working just fine but i dont want to capture these tags if the 'SPAN' tags come in these tags i want something like <STRONG.*(^(SPAN)).*?</STRONG>
this is the sample text
<STRONG> For technical <SPAN id=PageBreak>101</SPAN> please</STRONG>
<SPAN id=PageBreak type="4">56</SPAN><STRONG> visit</STRONG>
i want to capture the second strong tag and not the first one