Possible Duplicate:
Reverse a given sentence in java
what is the simple way to reverse the words in string in java? Example: "Hello Stack over flow" will turn to: "flow over Stack Hello"
Thank you,
what is the simple way to reverse the words in string in java? Example: "Hello Stack over flow" will turn to: "flow over Stack Hello" Thank you, |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Here is a simple solution:
I assume that all characters except spaces are considered as part of words. You may need to provide more details if you need something else. |
|||
|
|
|
Hope can help you. |
|||
|
|
|
A straightforward solution would be splitting the input string at the whitespaces, then reversing the result array with eg. Collections.reverse() or Commons ArrayUtils.reverse(), then joining them back together. |
||||
|
|