I'm trying to extract a specific word (that might change) which comes after a permanent expression. I want to extract the name Taldor
in this code:
<h4 class="t-16 t-black t-normal">
<span class="visually-hidden">Company Name</span>
<span class="pv-entity__secondary-title">Taldor</span>
</h4>
For now I able to find <h4 class="t-16 t-black t-normal">
using this regex:
(?<=<h4 class="t-16 t-black t-normal">).*
Will be glad for any kind of advice.