php 正则替换字符串
发布网友
发布时间:2022-10-27 17:04
我来回答
共1个回答
热心网友
时间:2023-09-27 18:04
是要的这个吗?
<?php
$str = '1 + 2 - (3 * 4)';
$str = preg_replace(array('/\(|\)/', '/\+|\-|\*|\//'), array('', ','), $str);
echo $str;
热心网友
时间:2023-09-27 18:04
是要的这个吗?
<?php
$str = '1 + 2 - (3 * 4)';
$str = preg_replace(array('/\(|\)/', '/\+|\-|\*|\//'), array('', ','), $str);
echo $str;