Imagine a lengthy JSON string.
I am aiming to identify the following section using a regular expression:
},
{
"@context"
My current expression is yielding two results instead of one. The only variance lies in the braces with the comma preceding the opening brace.
var matches = data.match(/({\"@context.*)/);