I'm working in C# right now and I'm using JSON.Net to parse json strings to well, C# objects. Part of my problem is that I'm getting some strings like this:
{"name": "John"}{"name": "Joe"}
When I try to deserialize with JsonConvert.DeserializeObject<>
, it throws an exception.
I'm wondering what would be the best way to split of this bigger string into smaller json strings.
I was thinking about going through the string and matching curly braces of "level 0". Does this seem like a good idea? Or is there some better method to do this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…