I want to reverse each word of a String in Java.
Example: if input String is "Hello World" then the output should be "olleH dlroW".
|
|
This should do the trick. This will iterate through each word in the source string, reverse it using
Output:
Notes: Commenters have correctly pointed out a few things that I thought I should mention here. This example will append an extra space to the end of the result. It also assumes your words are separated by a single space each and your sentence contains no punctuation. |
|||||||||||||
|
|
Obviously:
|
|||||||||||||||||||
|
|
Know your libraries ;-)
|
|||
|
|
|
You need to do this on each word after you
|
|||||||||
|
|
Here's the simplest solution that doesn't even use any loops.
Even if this is homework, feel free to copy it and submit it as your own. You'll either get an extra credit (if you can explain how it works) or get caught for plagiarism (if you can't). |
|||||||||||||||||||||
|
|
Taking into account that the separator can be more than one space/tab and that we want to preserve them:
|
|||
|
|
|
I'm assuming you could just print the results (you just said 'the output should be...') ;-)
Or returning the reversed String:
|
||||
|
|
|
Well I'm a C/C++ guy, practicing java for interviews let me know if something can be changed or bettered. The following allows for multiple spaces and newlines. First one is using StringBuilder
This one is using char[]. I think its more efficient...
|
||||
|
|
|
Heres a method that takes a string and reverses it.
First you need to split the string into words like this
|
||||
|
|
|
Use a for-loop to get each character in the string as you need them, and collect them in a StringBuffer with the add() method. |
|||
run:
|
||||
|
|
|
Using split(), you just have to change what you wish to split on.
|
|||
|
|
|
I came up with this answer while working on the problem. I tried not to use nested for loop solution O(N^2). I kind of forced myself to use stack for fun :D
|
|||
|
|
Run:
|
|||
|
|
|
|||
|
|
|
Dare I say (with all due respect)that the accepted answer in my opinion is not good . What about just this below nothing fancy.
|
|||
|
|
|
If you don't like to use the reverse function here is a straight forward way,doing this one for practice:
|
|||
|
|
|
use java StringBuffer.reverse()
|
|||||||||
|