I have a string like that:
String s = "{"Player":{"id":"1","name":"PM001"}},{"Player":{"id":"2","name":"PM002"}}"
I want to omit the "," so the result should be :
{"Player":{"id":"1","name":"PM001"}}
{"Player":{"id":"2","name":"PM002"}}
I have a string like that:
String s = "{"Player":{"id":"1","name":"PM001"}},{"Player":{"id":"2","name":"PM002"}}"
I want to omit the "," so the result should be :
{"Player":{"id":"1","name":"PM001"}}
{"Player":{"id":"2","name":"PM002"}}