How can I extend the following zend validator to include numbers with commas and points separator. Eg: 1.234.567,89
return array(
"*" => array("allowEmpty" => true),
"pret" => array(
"digits",
"presence" => "required"
),
);