I am trying to scrape a price, im struggling writing some reg ex to grab the specific text
<option value="1">
1
(£ 70)
</option>
Prices are pretty much displayed like the above in the source code with lots of white space. ideally I would like to grap the 70 from the string
this is what I have so far
preg_match("/<option value=\"1\">(.+)<\/option>/siU", $html, $matches);
I half expected this to grab 1(£ 70), but it did not work, any help?