First of all, Sorry, I'm newbie in Regular Expression so I cannot found the format for my RegEx.
I have a string like this :
{
"xs:schema" : {
"xs:element" : {
"xs:complexType" : {
"xs:choice" : {
"xs:element" : {
"xs:complexType" : {
"xs:sequence" : {
"xs:element":null
}
}
}
}
}
}
},
"diffgr:diffgram" : {
"NewDataSet" : {
"Table" : {
"Item1" : 12345,
"Item2":"Part"
}
}
}
}
I want select just this part of my string:
"NewDataSet" : {
"Table" : {
"Item1" : 12345,
"Item2":"Part"
}
}
how can I do it ?