I have a string containing multiple json, like this:
{"token":" kann","finish":false}{"token":" ich","finish":false}
I want to parse these mutliple Jsons, so I need to split them from the string.
I could search for }{
occurances and split there. But I am not sure if this would be best practice. Is there a canonical way to do this?