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

字符串拆分

时间:2018-07-09 19:26:19      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:int   void   res   limit   spl   out   输出   拆分   main   

示例1:

public String[] split(String regex)                           将字符串全部拆分

public String[] split(String regex,int limit)               将字符串全部拆分

 将字符串全部拆分处理

public class StringDemo {
    public static void main(String[] args) {
        String str = "hello world hello mldn";
        String result[] = str.split(" ");   //将字符串全部拆分,按照空格
        for(int x = 0;x < result.length;x ++){
            System.out.println(result[x]);
        }
    }
}

输出1:

hello
world
hello
mldn

 

字符串拆分

标签:int   void   res   limit   spl   out   输出   拆分   main   

原文地址:https://www.cnblogs.com/yrxns/p/9284955.html

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