PHP从数字字符串中删除逗号 [英] PHP remove commas from numeric strings

查看:75
本文介绍了PHP从数字字符串中删除逗号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在PHP中,我有一个包含所有字符串的变量数组.存储的某些值是带有逗号的数字字符串.

In PHP, I have an array of variables that are ALL strings. Some of the values stored are numeric strings with commas.

我需要什么:

一种从字符串中修剪逗号的方法,并且仅对数字字符串执行此操作.这并不像看起来那样简单.主要原因是以下操作失败:

A way to trim the commas from strings, and ONLY do this for numeric strings. This isn't as straightforward as it looks. The main reason is that the following fails:

$a = "1,435";

if(is_numeric($a))
    $a = str_replace(',', '', $a);

这失败,因为$a = "1435"是数字.但是$a = "1,435"不是数字.因为我得到的某些字符串将是带逗号的常规句子,所以我不能对每个字符串都执行字符串替换.

This fails because $a = "1435" is numeric. But $a = "1,435" is not numeric. Because some of the strings I get will be regular sentences with commas, I can't run a string replace on every string.

推荐答案

未经测试,但可能类似于if(preg_match("/^[0-9,]+$/", $a)) $a = str_replace(...)

Not tested, but probably something like if(preg_match("/^[0-9,]+$/", $a)) $a = str_replace(...)

这篇关于PHP从数字字符串中删除逗号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆