Hi Team
I wan to check specific data in json then only start extracting the data.
e.g this is demo json
"31": {
"raw_material_table": {
"headers": [
"Sr. No",
"Raw Material",
"Molecular Wt.",
"Moles",
"Mole Ratio",
"Quantity",
"Source",
"A. R. No.",
"Purity"
],
"rows": [
{
"Sr. No": "01.",
"Raw Material": "Aprepitant",
"Molecular Wt.": "534.0",
"Moles": "0.0936",
"Mole Ratio": "1.0",
"Quantity": "50.0 gm",
"Source": "Fos/R.18n/851/03/ FosIR184/851/144",
"A. R. No.": "-",
"Purity": "-"
},
{
"Sr. No": "02.",
"Raw Material": "TBPP .",
"Molecular Wt.": "538.0",
"Moles": "0.130",
"Mole Ratio": "1.39",
"Quantity": "70.0 8",
"Source": "foste.187 (8511080,",
"A. R. No.": "-",
"Purity": ""
},
{
"Sr. No": "03",
"Raw Material": "THE cory)",
"Molecular Wt.": "-",
"Moles": "-",
"Mole Ratio": "10vol",
"Quantity": "500ml",
"Source": "8.2 . fine.",
"A. R. No.": "-",
"Purity": "-"
},
I want to check everytime that Number(31...it will be dynamic) contains raw_material_table if contain then only thart extracting the data.
How can I achieve this?
Thanks in advance