I have JSON on input, which contain arrays like this
[13806008,,[[27017723,,[0.25,-180,145],],[26683222,,[0,-125,106],]],0,"0","0","0","0",null,[[176,"673041"],[168,"2"],[175,"val"],[169,"1"]]]
Chrome Web Inspector parses those double commas like undefined elements, but the Newtonsoft Json library throws an exception with this format.
The only way that I see - insert null between double commas first and parse string then.
Is there faster way to parse such JSON strings?