String string = "Hai,Hello,How,are,you"; String[] bits = string.split(","); String lastWord = bits[bits.length - 2]; tvs.setText(lastWord);