I want to extract only the "Mlody" string from the below code. Matching should start from <dt>User</dt>
and end at </dd>
on the next line. I need some help on the RegEx code required. HTML code is below.
<dl>
<dt>User</dt>
<dd><a href="/users/837">Mlody</a></dd>
<dd></dd>
</dl>