I am trying to get substring fom a string. I have a xml response and I want to get only few tags and there values to parse. but I am getting error :- no viable alternative at character ' '
responseObj.xmlResponse = response.getBody();
String xmlbody =response.getBody();
order OrderID=new order();
String substr=xmlbody.substring(xmlbody.indexOf("<OrderID>"));
Try this.