Eğer ben aşağıdaki giriş verilmiş, sorunuzu doğru yorumlama am:
<div>
<span>12.92$</span>
<span>24.82$</span>
</div>
geri 12.92 $ almak istiyor? Yani Eğer bir web sitesinden bir miktar para ilk geçtiği istiyorsun?
Eğer öyleyse, aşağıdakileri deneyin:
// Will find any number on the form xyz.abc.
// Will NOT cope with formatting such as 12 523.25 or 12,523.25
$regex = '/(\d+(:?.\d+)?) *([$])/'
preg_match($regex, $website, $matches);
//matches[0] => 123.45$
//matches[1] => 123.45
//matches[2] => $
(Daha sık başarısız olabilir) başka, daha iddialı deneyin olacaktır:
// Will find any number on the form xyz.abc.
// Attempts to cope with formatting such as 12 523.25 or 12,523.25
$regex = '/(\d{1,3}(:?[, ]?\d{3})*(:?.\d+)?) *([$])/'
preg_match($regex, $website, $matches);
//matches[0] => 12 233.45$
//matches[1] => 12 233.45
//matches[2] => $