So I'm trying to find all matching items in an chunk of HTML. Lets use the following as an example:
<body>
    <div>
    test
    <a href="test">
        <img src="test">
    </a>
    </div>
</body>
So we go looking for the word test and we find it first in the <div> and then in the…
 

 
    
Top comments (1)
Solution