标签: php
$string = '""mystring"":""""'; $result = preg_replace('/""/', '"', $string);
我希望结果是:
"mystring":""
但反而是
""mystring":"""
我在这里做错了什么?