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

Possible Duplicate:
Reverse “Hello World” in Java

I have "Hello World" kept in a String named hi.

I need to print it, but in a reversed mode.

How can I do this? I understand there is some kind of a function already built-in into Java that does that.

(Please note that I'm a totally newbie in Java, and this is one of the first things I want to do.)

share|improve this question
4  
When I google'd your question I got 10.4 million results. Perhaps searching for the answer would have been quicker. – Peter Lawrey Sep 27 '11 at 12:49
1  
@JRL should really be String ih = "dlroW olleH"; System.out.println(ih); – Matthew Farwell Sep 27 '11 at 12:49
I wish I could retract my close vote (as a duplicate). I re-read the other question and realized it's subtly different than this. However, this question is still duplicated many times over across the site. Probably ought to just find a different question to mark this a dupe of. – Rob Hruska Sep 27 '11 at 13:31

marked as duplicate by Rob Hruska, Andrew Thompson, Johann Blais, McDowell, Paŭlo Ebermann Sep 28 '11 at 0:21

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.

7 Answers

up vote 17 down vote accepted

new StringBuilder(hi).reverse().toString()

(Or, for versions earlier than JDK 1.5, use java.util.StringBuffer instead of StringBuilder — they have the same API. Thanks commentators for pointing out that StringBuilder is preferred nowadays.)

share|improve this answer
5  
+1: Or the newer StringBuilder. ;) – Peter Lawrey Sep 27 '11 at 12:48
String string="whatever";
String reverse = new StringBuffer(string).reverse().toString();
System.out.println(reverse);
share|improve this answer
Right back at ya! :D – Daniel Brockman Sep 27 '11 at 12:55
public static String reverseIt(String source) {
    int i, len = source.length();
    StringBuffer dest = new StringBuffer(len);

    for (i = (len - 1); i >= 0; i--)
      dest.append(source.charAt(i));
    return dest.toString();
  }

http://www.java2s.com/Code/Java/Language-Basics/ReverseStringTest.htm

share|improve this answer
2  
Good solution (1+). One enhancement - StringBuilder (since java5) will be faster than StringBuffer. Regards. – Michał Šrajer Sep 27 '11 at 12:49

You could use StringBuffers reverse

share|improve this answer

Nearly all the string manipulation methods are in the java.lang.String and java.lang.StringBuilder classes. Read their api doc, and you'll find what you're looking for.

share|improve this answer

Take a look at the Java 6 API under StringBuffer

String s = "sample";
String result = new StringBuffer(s).reverse().toString();
share|improve this answer

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