Linked Questions

Popular Questions

jsonlines file data manipulation

Asked by At

i have below data set:

    "network": {
        "networkElementId": "Cluster06_otmsrbs6521",
        "ossPrefix": "SubNetwork=ONRM_ROOT_MO_R,SubNetwork=ERBS-SUBNW-1,MeContext=Cluster06_otmsrbs6521",
        "platformType": "",
        "ossModelIdentity": "18.Q3-R4J",
        "neType": "MSRBS_V1"
    }
    {
        "networkElementId": "Cluster06_otmsrbs6521",
        "ossPrefix": "SubNetwork=ONRM_ROOT_MO_R,SubNetwork=ERBS-SUBNW-1,MeContext=Cluster06_otmsrbs6521", "platformType": "",
        "ossModelIdentity": "18.Q3-R4J", "neType": "MSRBS_V1"
    }
}

i want to extract "neType": "MSRBS_V1" using regular expressin in python. need your guidance

Related Questions