I have data like
[{somevalue1},{somevalue2}]
I want to extract datawithin the braces
I used
var data = data.match(/[{][^\"]+[}]/g);
But I receive null value.
|
I have data like
I want to extract I used
But I receive |
||||
|
You can use this:
\w will look for alphanumeric, and \s for spaces. |
|||||||||||
|
.matchis a native JavaScript function, it has nothing to do with jQuery. You expression does not match because[^a]matches any character buta, so it matches up to{somevand then fails because the next character isaand not}. Why are you using[^a]at all? – Felix Kling Aug 1 '12 at 21:48var data = JSON.parse(stringOfData);. It's less error prone and safer...a much, much better alternative to trying to do it yourself. – HerroRygar Aug 1 '12 at 23:08