I am trying to capture a part of a string using RegEx but can't i can capture the string itself but not the following string.
Here is the html source i would like to capture from:
<div class="FindBoxTopL fl_left">
<b>Salary: </b> $10.00 <br>
<b>Location: </b> Wisconsin Madison<br>
<b>Country:</b>United States<br>
<b>Contract Type: </b>Part Time<br><b>Closing Date: </b>August 15, 2014<br>
</div>
From the above html i would like to capture: Wisconsin Madison
So i would match the string Location:\s</b> and then capture the string Wisconsin Madison and stop at the page break.
The end capture output would be: Wisconsin Madison
Can anyone help please?