如何在android中做HttpResponse的子串

时间:2016-02-01 08:43:20

标签: java android string

我想做以下HttpResponse的子串。

true#696.887#Nirmal Patel

这是字符串,我只需要整个字符串中的Nirmal patel

3 个答案:

答案 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());