I'm facing a problem where I could not find a good looking approach to parse one string which contains multiple JSON strings, as in {content1}{content2}{content3}.
What is a good approach to parse this string so the result would be:
{content1} {content2} {content3}
Maybe something with Regex?
contentbits also contain curly brackets, if they are supposed to be JSON?