I have this variable like json string i need to read it to get every value
String data ={"sid":"48","name":"perla","email":"perla@gmail.com","pass":"613eb6402eb5164"};
i have tried to read the string with these methods:
String sid = data("sid");
String sid = data(0);
String sid = data[0];
but is no efficient
This is a string not an array string