Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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".

share|improve this question
1  
Do you know answer for you question yourself? – Artic Mar 14 '10 at 8:49

18 Answers

up vote 43 down vote accepted

This should do the trick. This will iterate through each word in the source string, reverse it using StringBuffer's built-in reverse() method, and output the reversed word.

String source = "Hello World";

for (String part : source.split(" ")) {
    System.out.print(new StringBuffer(part).reverse().toString());
    System.out.print(" ");
}

Output:

olleH dlroW 

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.

share|improve this answer
It sounds like a homework, using built-in methods are not acceptable. – fastcodejava Mar 14 '10 at 7:47
+1 just wanted to answer this. Note that you have an excess blank at the end – Peter Kofler Mar 14 '10 at 7:48
Probably, but I'll leave this answer here since the question didn't specify whether it is homework-related. – William Brendel Mar 14 '10 at 7:49
Nit pick - an extra space is added at the end, and multi-space separators are turned into single spaces. – Stephen C Mar 14 '10 at 7:49
2  
@fastcodejava - in some peoples' minds, complete answers to homework questions are unacceptable ... cos' ultimately it doesn't help the OP. – Stephen C Mar 14 '10 at 7:50
show 4 more comments

Obviously:

if( input.equals("Hello world") ){
    System.out.println("olleH dlrow");
}
share|improve this answer
1  
Wtf, what if it is "World Hello"? – fastcodejava Mar 14 '10 at 8:27
39  
@fastcodejava, if(input.equals("World Hello")){ System.out.println("dlroW olleH"); } – Zaki Mar 14 '10 at 8:32
Great answer, @zaki. – fastcodejava Mar 14 '10 at 15:04
3  
Upvoted for being jrockway – Stevan Little Jan 31 '11 at 14:48
1  
lol very nice answer and @Zaki's answer is also wonderful – Jack Feb 22 '12 at 15:35
show 1 more comment

Know your libraries ;-)

import org.apache.commons.lang.StringUtils;

String reverseWords(String sentence) {
    return StringUtils.reverseDelimited(StringUtils.reverse(sentence), ' ');
}
share|improve this answer

You need to do this on each word after you split into an array of words.

public reverse(String word) {
    char[] chs = word.toCharArray();

    int i=0, j=chs.length-1;
    while (i < j) {
        // swap chs[i] and chs[j]
        char t = chs[i];
        chs[i] = chs[j];
        chs[j] = t;
       i++; j--;
    }
}
share|improve this answer
1  
This will not work if there are surrogate pairs in the text. – Péter Török Mar 14 '10 at 14:16
Could you explain more? – fastcodejava Mar 14 '10 at 15:00
surrogate pairs are a feature of unicode, in which (if I understand correctly) instead of 16 bits forming one unicode character, you get a pair of 16bit characters forming one character. Google for "surrogate pair" for more info. – CPerkins Mar 14 '10 at 15:15

Here's the simplest solution that doesn't even use any loops.

public class olleHdlroW {
    static String reverse(String in, String out) {
        return (in.isEmpty()) ? out :
            (in.charAt(0) == ' ')
            ? out + ' ' + reverse(in.substring(1), "")
            : reverse(in.substring(1), in.charAt(0) + out);
    }
    public static void main(String args[]) {
        System.out.println(reverse("Hello World", ""));
    }
}

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).

share|improve this answer
2  
Could you explain in more detail? Seems to complicated. – fastcodejava Mar 14 '10 at 9:06
1  
Hint: think WHAT instead of HOW. – polygenelubricants Mar 14 '10 at 10:56
9  
I guess this solution goes to the possible lisp homework, only implemented in java :) – Azder Mar 14 '10 at 11:07
1  
@Jorn :But the code looks great! – Sawyer Mar 14 '10 at 14:08
1  
@Tony, for some definitions of "great", sure it does ;) – Jorn Mar 14 '10 at 17:48
show 5 more comments

Taking into account that the separator can be more than one space/tab and that we want to preserve them:

public static String reverse(String string)
{
    StringBuilder sb = new StringBuilder(string.length());
    StringBuilder wsb = new StringBuilder(string.length());
    for (int i = 0; i < string.length(); i++)
    {
        char c = string.charAt(i);
        if (c == '\t' || c == ' ')
        {
            if (wsb.length() > 0)
            {
                sb.append(wsb.reverse().toString());
                wsb = new StringBuilder(string.length() - sb.length());
            }
            sb.append(c);
        }
        else
        {
            wsb.append(c);
        }
    }
    if (wsb.length() > 0)
    {
        sb.append(wsb.reverse().toString());
    }
    return sb.toString();

}
share|improve this answer

I'm assuming you could just print the results (you just said 'the output should be...') ;-)

String str = "Hello World";
for (String word : str.split(" "))
    reverse(word);

void reverse(String s) {
    for (int idx = s.length() - 1; idx >= 0; idx--) 
        System.out.println(s.charAt(idx));
}

Or returning the reversed String:

String str = "Hello World";
StringBuilder reversed = new StringBuilder();
for (String word : str.split(" ")) {
  reversed.append(reverse(word));
  reversed.append(' ');
}
System.out.println(reversed);

String reverse(String s) {
  StringBuilder b = new StringBuilder();
  for (int idx = s.length() - 1; idx >= 0; idx--)
      b.append(s.charAt(idx));
  return b.toString();
}
share|improve this answer

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

public static String reverse(String str_words){
    StringBuilder sb_result = new StringBuilder(str_words.length());
    StringBuilder sb_tmp = new StringBuilder();
    char c_tmp;
    for(int i = 0; i < str_words.length(); i++){
        c_tmp = str_words.charAt(i);    
        if(c_tmp == ' ' || c_tmp == '\n'){
            if(sb_tmp.length() != 0){   
                sb_tmp.reverse();
                sb_result.append(sb_tmp);
                sb_tmp.setLength(0);
            }   
            sb_result.append(c_tmp);
        }else{
            sb_tmp.append(c_tmp);
        }
    } 
    if(sb_tmp.length() != 0){
        sb_tmp.reverse();
        sb_result.append(sb_tmp);
    }
    return sb_result.toString();
}

This one is using char[]. I think its more efficient...

public static String reverse(String str_words){
    char[] c_array = str_words.toCharArray();
    int pos_start = 0;
    int pos_end;
    char c, c_tmp; 
    int i, j, rev_length;
    for(i = 0; i < c_array.length; i++){
        c = c_array[i];
        if( c == ' ' || c == '\n'){
            if(pos_start != i){ 
                pos_end = i-1;
                rev_length = (i-pos_start)/2;
                for(j = 0; j < rev_length; j++){
                    c_tmp = c_array[pos_start+j];
                    c_array[pos_start+j] = c_array[pos_end-j];
                    c_array[pos_end-j] = c_tmp;
                }
            }
            pos_start = i+1;
        }
    }
    //redundant, if only java had '\0' @ end of string
    if(pos_start != i){
        pos_end = i-1;
        rev_length = (i-pos_start)/2;
        for(j = 0; j < rev_length; j++){
            c_tmp = c_array[pos_start+j];
            c_array[pos_start+j] = c_array[pos_end-j];
            c_array[pos_end-j] = c_tmp;
        }
    }   
    return new String(c_array);
}
share|improve this answer

Heres a method that takes a string and reverses it.

public String reverse ( String s ) {
            int length = s.length(), last = length - 1;
            char[] chars = s.toCharArray();
            for ( int i = 0; i < length/2; i++ ) {
                char c = chars[i];
                chars[i] = chars[last - i];
                chars[last - i] = c;
            }
            return new String(chars);
        }

First you need to split the string into words like this

String sample = "hello world";  
String[] words = sample.split(" ");  
share|improve this answer

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.

share|improve this answer
StringBuffer contains reverse() method to reverse the string – TOUDIdel Mar 2 at 18:02
public static void main(String[] args) {
        System.out.println(eatWord(new StringBuilder("Hello World This Is Tony's Code"), new StringBuilder(), new StringBuilder()));
    }
static StringBuilder eatWord(StringBuilder feed, StringBuilder swallowed, StringBuilder digested) {
    for (int i = 0, size = feed.length(); i <= size; i++) {
        if (feed.indexOf(" ") == 0 || feed.length() == 0) {
            digested.append(swallowed + " ");
            swallowed = new StringBuilder();
        } else {
            swallowed.insert(0, feed.charAt(0));
        }
        feed = (feed.length() > 0)  ? feed.delete(0, 1) : feed ;
    }
    return digested;
}

run:

olleH dlroW sihT sI s'ynoT edoC 
BUILD SUCCESSFUL (total time: 0 seconds)
share|improve this answer

Using split(), you just have to change what you wish to split on.

public static String reverseString(String str)
{
    String[] rstr;
    String result = "";
    int count = 0;
    rstr = str.split(" ");
    String words[] = new String[rstr.length];
    for(int i = rstr.length-1; i >= 0; i--)
    {
        words[count] = rstr[i];
        count++;
    }

    for(int j = 0; j <= words.length-1; j++)
    {
        result += words[j] + " ";
    }

    return result;


}
share|improve this answer
you forgotten to reverse each word. – elyashiv Oct 28 '12 at 13:23

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

    public StringBuilder reverseWord(String input) {
        char separator = ' ';
        char[] chars = input.toCharArray();
        Stack<Character> stack = new Stack<Character>();
        StringBuilder sb = new StringBuilder(chars.length);


        for(int i = 0; i < chars.length; i++) {

            if(chars[i] != separator) { //letters
                stack.push(chars[i]);

                //if not last letter don't go any further
                if(i != chars.length - 1) { continue; }

            }

            while(!stack.isEmpty()) {
                sb.append(stack.pop());
            }
            sb.append(separator);

        }
        //remove the last separator
        sb.deleteCharAt(sb.length() - 1);
        return sb;
    }
share|improve this answer
String someString = new String("Love thy neighbor");
    System.out.println(someString);
    char[] someChar = someString.toCharArray();
    int j = someChar.length - 1;
    char temp;
    for (int i = 0; i <= someChar.length / 2; i++) {
        temp = someChar[i];
        someChar[i] = someChar[j];
        someChar[j] = temp;
        j--;
    }
    someString = new String(someChar);
    System.out.println(someString);

Run:

Love thy neighbor
robhgien yht evoL
share|improve this answer
    String input = "Hello World!";

    String temp = "";
    String result = "";

    for (int i = 0; i <= input.length(); i++) {
        if (i != input.length() && input.charAt(i) != ' ') {
            temp = input.charAt(i) + temp;
        } else {
            result = temp + " " + result;
            temp = "";
        }
    }

    System.out.println("the result is: " + result);
share|improve this answer

Dare I say (with all due respect)that the accepted answer in my opinion is not good .

What about just this below nothing fancy.

 public static void main(String[] args) {   
    String test = "Hello World";
    StringBuilder reverse = new StringBuilder();
    for(int i =test.length()-1 ; i >= 0;i--){           
        reverse.append(test.charAt(i));
    }       
    System.out.println(reverse);
}
share|improve this answer

If you don't like to use the reverse function here is a straight forward way,doing this one for practice:

public static void main(String[] args){
    //initiate vars
    String s = "Hello World!";
    String rev = "";
    int length = s.length();
    int counter = length;

    for (int i = 0 ; i <length; i++){
            rev += s.charAt(counter-1) ;
            counter--;
    }

    System.out.println(rev);
}
share|improve this answer

use java StringBuffer.reverse()

String[] toks = new String("Hellow World");
for (String s : toks)
{
    StringBuffer sb = new StringBuffer(s);
    sb.reverse();

    System.out.print(sb);
}
share|improve this answer
1  
you should split the string into words before reverse it – Anantha Kumaran Mar 14 '10 at 7:45
1  
This doesn't solve the OP's problem. It reverses the words as well as the letters in each word. – Stephen C Mar 14 '10 at 7:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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