0

我想删除括号内输出字符串中多余的逗号。

 $data= "item_id IN ( '1','2',) AND nt_id IN ( 'er1','er2',) AND";

我使用 rtrim 函数删除了多余的“和”。

$trimValues = rtrim($data,'AND') ;

但是如何删除括号内的逗号?

4

1 回答 1

1
,(?=\s*\))

您可以使用它并替换为empty string.See demo。

https://regex101.com/r/rkDV4X/1

$re = '/,(?=\s*\))/';
$str = 'item_id IN ( \'1\',\'2\',) AND nt_id IN ( \'er1\',\'er2\',) AND';
$subst = '';

$result = preg_replace($re, $subst, $str);

echo "The result of the substitution is ".$result;
于 2017-02-23T04:35:34.623 回答