I've been trying to pass a large html piece containing lists with hyperlinks and their descriptions.
<li class="exhibitor-box">
<figure>
<img src="/images/show/logos/exhibitor_7210_letter.jpg" alt="Business Show Exhibitor">
</figure>
<h3 class="exhibitor-name"><a href="/exhibitors/financial-services/365-business-finance/">365 Business Finance</a></h3>
<p>We provide funding to small and medium size businesses that take payment via credit cards.Our application process takes minutes, and you...</p>
</li>
And I've been attempting to grab the hyperlink descriptions from every list element, but I can only match the entire hyperlink with tag included using my regex, and even with regex how would I go about removing the text surrounding my match instead of replacing my match in notepad++.