<?php $values = array('1201203,00', '123,123.23', '12.23', '10.00', '10'); foreach ($values as &$value) { $value = preg_replace('/[,.]\d{2}$/', '', $value); } print_r($values);
You have javascript disabled. You will not be able to edit any code.