Preg 替换 json 字符串的代码
我想将所有连续逗号 ,,
替换为 {"v":""}
例如 ,,,,,
也将被替换。
我已经尝试过了,
preg_replace('/,+/',',{"v":""},', $string);
尽管我可能做错了什么。任何帮助将不胜感激。 谢谢。
I want to replace all sequential commas ,,
with {"v":""}
for example ,,,,,
would also be replaced.
I've tried
preg_replace('/,+/',',{"v":""},', $string);
Though I probably got something wrong. Any help would be appreciated.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以满足您的要求:
但是,简单的正则表达式并不是完成此工作的最佳工具,因为一旦存在包含多个逗号的字符串,它就会中断。
This should do what you want:
However, a simple regular expression isn't the best tool for this job because it will break as soon as there is a string containing multiple commas.