PHP remove commas from numeric strings February 19, 2023 by Tarik Do it the other way around: $a = "1,435"; $b = str_replace( ',', '', $a ); if( is_numeric( $b ) ) { $a = $b; }