Java:获取拆分后的最后一个元素
我正在使用字符串拆分方法,并且我希望拥有最后一个元素。数组的大小可以更改。
例:
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?
我不知道运行时数组的大小:(