I would like to find 30,850
in:
<div class='user-information__achievements-heading' data-test-points-title>
Points
</div>
<div class='user-information__achievements-data' data-test-points-count>
30,850
</div>
</div>
with:
^(?!<div class='user-information__achievements-data' data-test-points-count>
|<.div>)(.*)$
(returns nothing)
How come ^(?!START\-OF\-FIELDS|END\-OF\-FIELDS)(.*)$
does work for:
START-OF-FIELDS
<div>
Line A
END-OF-FIELDS
(returns <div>
)?