Hi I'm using this code:
Dim expr As String = "\<(.|\n)+?\>"
and was trying to remove the hyperlink below:
<a href="https://support.sample.com/applications/ManagemyEngagements/Documents/SolutionContingency.html" target="_blank">demo </a>
My target is to return the hyperlink description "demo" but when trying to replace the matched items with an empty string all are being replaced.
Desired result:
demo
Please help
Thanks!