My string format is,
{
"group By": "name",
"time Period": {
"from": "2015-12-29",
"to": "2016-02-29"
},
"query String": "[nation]: \"India\" AND [education]: \"be",
"geography": "NA",
"offset": 0,
"limit": 10
}
From the above content I want to extract the query string
value and need to display it in HTML page.I have tried to do that using Regular expression in java net beans. But I am resulting in errors.
Can you please give me the regex pattern to extract query string from the above JSON ?. The Regular expression I have tried is: \"((\"|[^"])*)\"";
Thanks in advance.