当调用 .split 时,是否有任何字符串可以返回带有空节点的数组?这是我尝试过的:
String string = "test,,test";
if (string != null && !string.isEmpty()) {
String[] parsedString = string.split(",");
for (String stringNode : parsedString) {
if (stringNode != null) {
//perform logic here. Omitted for the purpose of this question.
}
}
}
我希望我的方法能够处理空字符串,但是如果 String.split() 不能返回带有空节点的数组,那么删除它可能是安全的吗?