fork download
  1. <?php
  2. function remove_currency($price) {
  3. return (double) preg_replace('/[^0-9\.]+/', '', $price);
  4. }
  5.  
  6. echo remove_currency('180 NIS') - remove_currency('30 NIS') . PHP_EOL;
  7. echo remove_currency('$50') - remove_currency('$10') . PHP_EOL;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
150
40