.splitが呼び出されたときにnullノードの配列を返す可能性のある文字列はありますか?これが私が試したことです:
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.
}
}
}
メソッドでnull文字列を処理できるようにしたいのですが、String.split()がnullノードの配列を返すことができない場合は、おそらく削除しても安全ですか?