The original string looks like:
[[{"v":new Date(2013, 2, 16, 8, 0),"f":"March 2013"},null,null,95,null,null,true],
[{"v":new Date(2013, 3, 15, 20, 0),"f":"April 2013"},null,null,97,null,null,true]],
"showHeadlines" ...
You can see, there are a sequence of data which are included in a pair of "[ ]", and I want to extract the number which stay in "null, null, ..., null, null" combo. And my regular expression is:
String reg = "null/,([0-9]*)/,null";
But it does not work. Could you help me to modify it? Thank you so much!!!!