java字符串截取--截取倒数第二个指定字符之前/后的字符串
截取倒数第二个”/”之前的字符串
String path="/home/henry/Desktop/1.txt";
//获得""/home/henry",并且不需要前面的"/"
String oo=path.substring(0,path.lastIndexOf("/",path.lastIndexOf("/")-1));
//"-1"代表在定位时往前取一位,即去掉"/"
//从path.lastIndexOf("/")-1位置开始向前寻找倒数第二个"/"的位置
//最后用substring()方法来进行截取
System.out.println(oo);
截取倒数第二个”/”之后的字符串
String path="/home/henry/Desktop/1.txt";
//获得"Desktop/1.txt",并且不需要前面的"/"
String oo=path.substring(path.lastIndexOf("/",path.lastIndexOf("/")-1)+1);
//"+1"代表在定位时往后取一位,即去掉"/"
//"-1"代表以"/"字符定位的位置向前取一位
//从path.lastIndexOf("/")-1位置开始向前寻找倒数第二个"/"的位置
System.out.println(oo);
原文作者:daponi
原文地址: https://blog.csdn.net/daponi/article/details/102985742
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/daponi/article/details/102985742
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章