如何从给定的字符串中删除大括号,我已将所有匹配项应用于更改字符串。
我的输出看起来像这样
return (
<MyComponent
name={prof.name}
custmProps
custmProps
custmProps
arrayRows={this.props.blocks.profiles} // here you want this
/>
)
然后我将更改此类型
{"Category":"TATA Wiron TW02","Quantity":"33 Kgs","Total Price":"4125"},{"Category":"Tata Wiron Aayush","Quantity":"33 Kgs","Total Price":"3630"}
但是在这里我遇到的问题是我们制造的这两个项目中的Category:TATA Wiron TW02,Quantity:33 Kgs,Total Price:4125},{Category:Tata Wiron Aayush,Quantity:33 Kgs,Total Price:3630
,但是动态地会添加这么多项目,如何删除它
我的代码是:
Total Price:4125},{Category:Tata Wiron Aayush
答案 0 :(得分:0)
为什么不使用json_decode
。清晰可见,它是json。
json_decode
只需将json解码为array
。
$jsonArray = json_decode($your_json);
,然后根据需要使用此数组。