java截取一个字符串正数或倒数某个特定字符前后的内容
取出正数第二个“.”后面的内容
public class TestCode { public static void main(String[] args) { String str ="232ljsfsf.sdfl23.ljsdfsdfsdfss.23423.sdfsdfsfd"; //获得第一个点的位置 int index=str.indexOf("."); System.out.println(index); //根据第一个点的位置 获得第二个点的位置 index=str.indexOf(".", index+1); //根据第二个点的位置,截取 字符串。得到结果 result String result=str.substring(index); //输出结果 System.out.println(result); } }
取出倒数第三个“-”前面的内容
public class subString { public static void main(String[] args) { String b = "/dota-2/talent/arc-warden-20-2-38"; String subStringB = b.substring(b.lastIndexOf("/")+1); int index=subStringB.lastIndexOf("-"); index=subStringB.lastIndexOf("-", index-1); index=subStringB.lastIndexOf("-",index-1); System.out.println(subStringB.substring(0,index)); } }
作者:Rest探路者
出处:http://www.cnblogs.com/Java-Starter/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意请保留此段声明,请在文章页面明显位置给出原文连接
Github:https://github.com/cjy513203427