Hi I'm trying to get information from a huge string, the thing is that I need to extract some words after a tag. I think this example will explain it better. I send a code to a web page and it returns me a String like this:
String CodeISend= "JFK";
//The process of getting the returned String isn't important right now
String returnedCode="{"airport":{"fs":"JFK","iata":"JFK","icao":"KJFK","faa":"JFK","name":"John F. Kennedy International Airport","street1":"JFK Airport","city":"New York""
I need to extract the name of the airport and save it into a separate String. But I really don't know how to get the info after "name": Appreciate the help!