What is the simplest way to get the last word of a string in Java? You can assume no punctuation (just alphabetic characters and whitespace).

link|improve this question

related: stackoverflow.com/questions/1181969/… – GreenMatt Jan 12 '11 at 19:03
1  
Title says "fastest", questions asks for "simplest". Please clarify. – z5h Jan 12 '11 at 20:42
Fastest and simplest for coding and reading. Execution time is irrelevant. As an aside, having different wording is better for search purposes although the discrepancy was unintentional. – Muhd Jan 12 '11 at 21:49
feedback

3 Answers

up vote 12 down vote accepted
String test =  "This is a sentence";
String lastWord = test.substring(test.lastIndexOf(" ")+1);
link|improve this answer
Needs a +1 there and fails on a single word. – marcog Jan 12 '11 at 19:09
One line is nice since I will be using it in Velocity template code. Could be combined with a regular expession to account for other characters like JST's solution. – Muhd Jan 12 '11 at 19:26
Actually this is better, it already accounts for a single word: String lastWord = test.substring(test.lastIndexOf(" ")+1); – Muhd Jan 12 '11 at 19:56
@Muhd, you're correct! Fixed – OscarRyz Jan 12 '11 at 20:34
feedback
String testString = "This is a sentence";
String[] parts = testString.split(" ");
String lastWord = parts[parts.length() - 1];
System.out.println(lastWord); // "sentence"
link|improve this answer
This is the solution I probably would have come up with on my own, not bad, but a one-liner would be better. – Muhd Jan 12 '11 at 19:05
When you say "fastest," do you mean shortest in code or fastest to execute? This could be made into a one liner, but it wouldn't execute any faster and would be much harder to read. – Dave McClelland Jan 12 '11 at 19:08
1  
I did not say "fastest", I said "simplest", by which I meant a combination of brevity and ease of understanding. – Muhd Jan 12 '11 at 19:10
3  
@Muhd Your thread title says fastest – Dave McClelland Jan 12 '11 at 19:11
1  
@Muhd If it were me, I would think the above is easiest to read. Then again, this is also the solution I immediately came up with. @OscarRyz's solution is also simple to read, so it comes down to personal preference. – Dave McClelland Jan 12 '11 at 19:14
show 3 more comments
feedback

If other whitespace characters are possible, then you'd want:

testString.split("\\s+");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.