I'm trying to access
1.20163
from the following:
1 British Pound Sterling = 1.20163 Euro
So far I have:
$exchange['rate'] = $xml->channel->item[15]->description;
$rate = preg_match('/^[0-9]{1,}$/', '', $exchange['rate']);
However, this seems to returns
1 British Pound Sterling = 1.20163 Euro
Any ideas?