[Solved] how to do substring of HttpResponse in android


You can simply do this,

String yourString = yourResponse.substring(yourResponse.lastIndexOf('#') + 1);

1

solved how to do substring of HttpResponse in android