This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String parseJSON(String json, String key){ | |
| String pair = ""; | |
| String result, temp_key, value; | |
| for(int i = 0; i < json.length(); i++){ | |
| if(json.charAt(i) == '['){ | |
| // Do nothing | |
| } | |
| else{ | |
| if(json.charAt(i) == ',') |