最佳答案
我正在使用 String 分割方法,并且我希望拥有最后一个元素。 Array 的大小可以更改。
例如:
String one = "Düsseldorf - Zentrum - Günnewig Uebachs"
String two = "Düsseldorf - Madison"
我想分割上面的字符串,得到最后一个项目:
lastone = one.split("-")[here the last item] // <- how?
lasttwo = two.split("-")[here the last item] // <- how?
我不知道数组在运行时的大小: (