object Main extends App {

	var jsonp = 
			"""_SS_MainSolrCallbackH(
			  {
			    response: {
			      numFound: 1,
			      start: 0,
			      maxScore: 4.9338827,
			      docs: [
			        {
			        tipo: "M",
			        id: "mus1933196",a
			        s: 4.9338827,
			        u: "daniellaalcarpe",
			        d: "lagrima-de-amor",
			        dd: "",
			        f: "202114_20130510215437.jpg",
			        a: "Daniella Alcarpe",
			        t: "Lágrima De Amor",
			        g: "MPB"
			        }
			      ]
			    },
			    highlighting: {
			      mus1933196: {
			        titulo: [
			          "Lágrima <b>De</b> <b>Amor</b>"
			        ]
			      }
			    }
			  }
			)""";

	def toJson(jsonp: String): String = {
		jsonp.substring(jsonp.indexOf('{'), jsonp.lastIndexOf('}') + 1);
	}
	System.out.println(toJson(jsonp));

}