I have this result response[sample]: "{\"meta\":{\"code\":400}},[Content-Type:\"application/json\", Transfer-Encoding:\"chunked\", Date:\"Mon, 13 Sep 2021 17:25:12 GMT\", Keep-Alive:\"timeout=60\", Connection:\"keep-alive\"]" I want value of field code to be extracted I tried first to extract json out of this string "{\"meta\":{\"code\":400}},' but it looks i dont need to do these because i just want value of field code I tried below but got stuck to remove "/" . It would be nice to extract json and get code value but just getting the field code from above will also suffice | eval responseJson0 = replace(responseJson,"\/", "") | eval responseJson1 = replace(responseJson,"<", "") | eval responseJson2 = replace(responseJson1,">", "") | eval responseJson3 = replace(responseJson2,"200,", "")
... View more