java字符串截取--截取倒数第三个指定字符之后的字符串
截取倒数第三个”/”之后的字符串
public static String getThirdLocation(String url){
//index为最后的“/”字符所在的位置
int index=url.lastIndexOf(File.separator);
//从最后的“/”字符的前一个位置向前找“/”的位置为此index
index=url.lastIndexOf(File.separator,index-1);
//从倒数第二的“/”字符的前一个位置向前找“/”的位置为此index
index=url.lastIndexOf(File.separator,index-1);
//得到倒数第三个“/”之后的字符串
String location=url.substring(index+1);
return location;
}
运行结果:
原文作者:@huangcl
原文地址: https://blog.csdn.net/henry000513/article/details/94555244
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/henry000513/article/details/94555244
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章