Answer the question
In order to leave comments, you need to log in
How to parse double quotes in JSON?
Hello! I am using the JSON.Net library on VB.NET. View file parsing problem
{
"a":"просто текст",
"b":"текст с "кавычками""
}
Answer the question
In order to leave comments, you need to log in
This is not a valid json, it will almost never work anywhere.
{
"a":"просто текст",
"b":"текст с \"кавычками\""
}
So try.
If all key/value pairs are scattered across the lines, then with regular expressions, between the third and last quote, replace all quotes with \" or ' (to your taste)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question