码迷,mamicode.com
首页 > 其他好文 > 详细

String中对字符串进行操作的一些fang

时间:2017-12-22 19:46:59      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:blog   分享   body   str   print   image   substr   ima   bsp   

1.substring

  • 作用:根据字符串下标进行截取
public class StrTest {
    public static void main(String[] args) {
        String a = "asdfgasdfg";
        a=a.substring(3);
        System.out.println(a);

    }
}

结果:

技术分享图片

2.split

  • 作用:根据指定字符对字符串进行切分。返回值为String类型的数组。
public class StrTest {
    public static void main(String[] args) {
        String a = "asdfgaxcv";
        String[] as = a.split("a");

        for (String b : as) {

            System.out.println(b);
        }

    }
}

 结果:

技术分享图片

3.

 

String中对字符串进行操作的一些fang

标签:blog   分享   body   str   print   image   substr   ima   bsp   

原文地址:http://www.cnblogs.com/miaoww/p/8087187.html

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