Here is my regular expression
Dim TableHeaderExpression As String = "<th[^>]*>(.*?)</th>"
and here is my HTML
<th class="seller-col">
<b>Relevanz</b>
<span class="ps-sprite ps-sprite-sortdw" title=""></span>
</th>
this expression gives me everything inside the th Tag so it outputs
<b>Relevanz</b>
<span class="ps-sprite ps-sprite-sortdw" title=""></span>
but how i make it output only
Relevanz
meaning ignore all the text inside <th>
except for whats inside <b>