fork download
  1. <?php
  2.  
  3. $string = '-238.125.,8618.75,621';
  4.  
  5. echo preg_replace_callback('/-?\d+\.\d+\K([.,\d]+)/', function($match) {
  6. return str_replace([',','.'], '', $match[1]);
  7. }, $string);
  8.  
  9.  
  10.  
  11.  
Success #stdin #stdout 0s 82624KB
stdin
Standard input is empty
stdout
-238.125861875621