Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在蜂巢/ SQL 中工作。我的表中有一个列,其中包含代表 json 对象数组的字符串。我需要将字符串转换为 JSON 字符串数组。
例如,我有这个,
"[{a:1, b:1},{a:2, b:2}]"
我想得到这个:
["{a:1, b:1}","{a:2, b:2}"]
尝试将字符串转换为数组,但这不起作用。关于如何以聪明的方式做到这一点的任何想法,而不是用“},{”分割?
没关系,我最终只是将字符串拆分为“}”,然后将“}”添加回每个部分,效果很好!