Hey guys, I am trying to match "address" in this page -
The source of address part has this HTML
<tr>
<td align="right" class="generalinfo_left">Address:</td>
<td class="generalinfo_right">1 S Main St Ste 1430<br /></td>
</tr>
<tr>
<td align="right" class="generalinfo_left"></td>
<td class="generalinfo_right">Dayton, OH 45402</td>
</tr>
So, I tried the following RegEx in PHP.
"%Address:</td>(.*?)(?!<br />)</td>%s"
where "s" is the modifier for "." to match new lines too. But it is not working. It doesnt matches the "Dayton, OH 45402" part. Can anyone tell me why?