I need to extract specific values from an array of objects within a string value. For example, I want to filter based on conditions like stage===1 && state==="not-started". The structure of the string Array is shown below.
"sts" : "[{\"percentage\":0,\"stage\":\"Stage1\",\"timestamp\":\"2020-02-11T09:52:53.018Z\",\"state\":\"not-started\",\"information\":\"Stage1 not started yet\",\"order_no\":0,\"display-name\":\"UNKNOWN ALL\"},{\"percentage\":0,\"stage\":\"Stage2\",\"timestamp\":\"2020-02-11T09:52:53.018Z\",\"state\":\"not-started\",\"information\":\"Stage2 is not started yet\",\"order_no\":1,\"display-name\":\"Stage2\"},{\"percentage\":0,\"stage\":\"Stage3\",\"timestamp\":\"2020-02-11T09:52:53.018Z\",\"state\":\"not-started\",\"information\":\"Stage3 is not started yet\",\"order_no\":2,\"display-name\":\"Stage3\"},{\"percentage\":0,\"stage\":\"Stage4\",\"timestamp\":\"2020-02-11T09:52:53.018Z\",\"state\":\"not-started\",\"information\":\"Stage4 is not started yet\",\"order_no\":3,\"display-name\":\"Stage4\"}]"