首页 > 编程语言 > 详细

11.如何把一段逗号分隔的字符串转换为一个数组

时间:2020-01-07 23:36:03      阅读:85      评论:0      收藏:0      [点我收藏+]

split

public class DouHaoShuZuFenGe {
    public static void main(String[] args) {
        String orgStr = "a,b,c,d,e,f,g";
        String[] result = orgStr.split(",");

        for (int i = 0; i < result.length; i++) {
            System.out.print(result[i] + "\t");
        }

        for (String s : result) {
            System.out.print(s);
        }
    }
}

11.如何把一段逗号分隔的字符串转换为一个数组

原文:https://www.cnblogs.com/xnuuuu/p/12163388.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!