RegEx for the <li></li> tags
- by Abu
Hi All,
i am working on the C# WinForm application. In that application, i have snippet like this:
<ul>
<li>abc
<li>bbc
<li>xyz
<li>pqr </li></li></li></li>
</ul>
but, i want to get output like..
<ul>
<li>abc</li>
<li>bbc</li>
<li>xyz</li>
<li>pqr</li>
</ul>
Is there any method using which this thing can be done?
Can anybody suggest me any RegEx for this problem?
Thanks. Regards.