`split`方法在Java中的使用。

huangapple go评论77阅读模式
英文:

split method in java

问题

这是我的代码,用于将给定字符串拆分并放入数组中。
问题是,我希望在传递空字符串时也能正常工作。有什么办法实现这个?

String[] buArray = buList.split(";",-1);

所以我希望在传递 ""`buArray.length` 等于零
英文:

Here is my code to split given string and put them into an array.
Question, I want it to work while I am passing an empty String. How is that possible?

String[] buArray = buList.split(";", -1);

So I want buArray.length equals zero while passing "".

答案1

得分: 1

可以使用类似以下方式:

String[] buArray =
  (buList == null || buList.isEmpty())
  ? new String[0]: buList.split(";");

如果不需要的话,可以去掉空值检查。

英文:

You can use something like below:

String[] buArray = 
  (buList == null || buList.isEmpty()) 
  ? new String[0]: buList.split(";");

You can remove null check if it is not needed.

huangapple
  • 本文由 发表于 2020年4月6日 21:36:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/61061125.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定