String string = "Hai,Hello,How,are,"; String[] bits = string.split(",", -1); ↓ bits[]…{ "Hai","Hello","How","are","" } bits[bits.length-2]…"are"