How to get keyvalue from MiniJSON unity

I have url values in JSON format and i used MiniJson to parse the values from JSON url and i’m getting the values but i’m getting the url value is " modellinksArray: {0} “, modellinksArray[“link”]”

foreach (IDictionary modellinksArray in linksObject) {

            String modal3d=string.Format("modellinksArray: {0} ", modellinksArray["link"]);

            Debug.Log("modal Url load is "+ modal3d);

Log:

modellinksArray: http://server.com/Unity/3dmodel/cat/cat.obj 

Here i’m getting modellinksArray: before the url. How can i extract only url from modellinksArray?

You put the ‘modellinksArray:’ there yourself:

String modal3d=string.Format("modellinksArray: {0} ", modellinksArray["link"]);

The Format call adds the text to the string. In fact, the string.Format call does exactly the same thing right now as:

String model3d = "modellinksArray: " + modellinksArray["link"] + " ";

Just ditch the Formatting call and grab modellinksArray[“link”] directly if that’s the url you’re looking for.