希望这很容易。 我有一个包含 CSV 文件输出的直线阵列。 我要做的就是删除两个引用之间出现的任何逗号 。
我通过普通的表达方式 遇到麻烦。
<?php
$csv_input = "herp","derp","hey, get rid of these commas, man",1234 ;
$pattern = (?<=")/,/(?=") ; //this doesn t work
$revised_input = preg_replace ( $pattern , , $csv_input);
echo $revised_input;
//would like revised input to echo: "herp","derp,"hey get rid of these commas man",1234
?>
非常感谢大家