Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In order to install external extension into Google Chrome browser, I try to update chrome external extension json file. Using JSON.Net it seems to be easy:

string fileName = "..."; // path to chrome external extension json file

string externalExtensionsJson = File.ReadAllText(fileName);

JObject externalExtensions = JObject.Parse(externalExtensionsJson);

but I get a Newtonsoft.Json.JsonReaderException saying:

"Error parsing comment. Expected: *, got /. Path '', line 1, position 1." 

when calling JObject.Parse because this file contain:

// This json file will contain a list of extensions that will be included
// in the installer.

{
}

and comments are not part of json (as seen in How do I add comments to Json.NET output?).

I know I can remove comments with a Regex (Regex to remove javascript double slash (//) style comments) but I need to rewrite json into file after modification and keeping comment can be a good thinks.

Question: Is there a way to read json with comments without removing them and be able to rewrite them?

share|improve this question

2 Answers

up vote 1 down vote accepted

A little late but you could always convert single-line comments to multi-line comment syntax before parsing...

something like replace...

.*//.*\n

with

$1/*$2*/

...

Regex.Replace(subjectString, ".*//.*$", "$1/*$2*/");
share|improve this answer
Good practical solution. Thanks. – MuiBienCarlota 2 days ago

Json.NET only supports reading multi-line JavaScript comments, i.e. /* commment */

share|improve this answer
1  
Thanks but I have no choice: Google Chrome provides a file named "external_extensions.json" containing single line comments and I must complete it. More generally, Json is often used as configuration file where comments (single and/or multi lines) can be added by users. We have no choice: we can be faced with the need to read each comment (and ideally rewrite it). And I liked to be able to use Json.Net to do it. Do you think it can be a possible evolution? – MuiBienCarlota Apr 26 '12 at 8:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.