I have a JSON string of multiple arrays obtained from the front end of my application.
String editList = [{"gradingId":"9","lowerLimit":"34","upperLimit":"55"},{"gradingId":"11","lowerLimit":"23","upperLimit":"45"},{"gradingId":"37","lowerLimit":"20","upperLimit":"35"}]
i obtain individual elements as,
gradingId= 9
lowerLimit=34
UpperLimit=55
and so on.
is there a way that I can access the gradingId, LowerLimit and upperLimit by there names?