Answers for "strip non numeric and period php"

PHP
0

strip non numeric and period php

<?php
    $testString = '12.322,11T';
    echo preg_replace('/[^0-9,.]/', '', $testString);
?>
Posted by: Guest on August-14-2020

Code answers related to "strip non numeric and period php"

Browse Popular Code Answers by Language