2 namespace TYPO3\CMS\Form\Domain\Filter;
58 $this->decimalsPoint =
'.';
73 $this->thousandSeparator =
',';
75 $this->thousandSeparator =
' ';
77 $this->thousandSeparator =
'';
94 $this->thousandSeparator,
105 $value = preg_replace(
"/[^0-9.-]/",
"", $value);
106 $value = (double)$value;
107 return number_format($value, 2, $this->decimalsPoint, $this->thousandSeparator);