码迷,mamicode.com
首页 > 编程语言 > 详细

java截取一个字符串正数或倒数某个特定字符前后的内容

时间:2018-01-25 00:08:47      阅读:1098      评论:0      收藏:0      [点我收藏+]

标签:substring   输出   index   ast   []   正数   warden   void   jsf   

取出正数第二个“.”后面的内容

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));
    }

}

 

java截取一个字符串正数或倒数某个特定字符前后的内容

标签:substring   输出   index   ast   []   正数   warden   void   jsf   

原文地址:https://www.cnblogs.com/Java-Starter/p/8343769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!