加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

在Java中使用多个连续逗号分割字符串

发布时间:2020-12-15 00:26:44 所属栏目:Java 来源:网络整理
导读:参见英文答案 How to split a comma-delimited string into an array of empty strings1个 String abc = "a,b,c,d,";String[] arr = abc.split(",");System.out.println(arr.length); 输出是4.但显然我的期望是7.这是我的解决方案: String abc = "a,";abc +
参见英文答案 > How to split a comma-delimited string into an array of empty strings1个
String abc = "a,b,c,d,";
String[] arr = abc.split(",");
System.out.println(arr.length);

输出是4.但显然我的期望是7.这是我的解决方案:

String abc = "a,";
abc += "n";
String[] arr = abc.split(",");
System.out.println(arr.length);

为什么会这样?有谁可以给??我一个更好的解决方案?

解决方法

使用带有两个参数的字符串#split()的 alternative version来实现此目的:
String abc = "a,",-1);
System.out.println(arr.length);

这打印

7

从上面链接的Javadoc:

If n is non-positive then the pattern will be applied as many times as possible and the array can have any length. If n is zero then the pattern will be applied as many times as possible,the array can have any length,and trailing empty strings will be discarded.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读