Hi,
Let's say I have the following text...
What regex pattern can I use to grab a collection of texts between the <div class="info"> and </div> tags? ie. 3 occurrences?
Any help would be appreciated. A star for any helpful answer
Thanks.
Ryan
Let's say I have the following text...
Code:
<div class="info">
<h5>Test1</h5>
<a href="/19369/">Test1a</a><br/>
</div>
<div class="info">
<h5>Test2</h5>
<a href="/19361/">Test2a</a><br/>
</div>
<div class="info">
<h5>Test3</h5>
<a href="/19360/">Test3a</a><br/>
</div>
What regex pattern can I use to grab a collection of texts between the <div class="info"> and </div> tags? ie. 3 occurrences?
Any help would be appreciated. A star for any helpful answer
Ryan