I have a very large HTML that contains lots of div
s with the same name, I want a way to only filter or extract that value from that div
.
Here is an example:
<td class="last">
<div class="container-relative">
<div class="name" title=""User" <John Appleseed>"></div>
<div class="date">9/17/2019</div>
<div class="tool"></div>
</div>
</td>
I need to extract only what's between <John Appleseed>
, in this case is 'John Appleseed'.