我想做以下HttpResponse的子串。
true#696.887#Nirmal Patel
这是字符串,我只需要整个字符串中的Nirmal patel
。
答案 0 :(得分:0)
你可以这么做,
String yourString = yourResponse.substring(yourResponse.lastIndexOf('#') + 1);
答案 1 :(得分:0)
String substring= httpresponse.substring(httpresponse.lastIndexOf('#')+1,httpresponse.length());
答案 2 :(得分:0)
首先使用lastIndexOf
方法
int index = YOUR_RESPONSE.lastIndexOf("#");
使用subString
方法
YOUR_RESPONSE.subString((index+1),YOUR_RESPONSE.length());