Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconSoftware Developmentbreadcumb forward arrow iconHow to do Reverse String in Java Using Various Methods

How to do Reverse String in Java Using Various Methods

Last updated:
23rd Oct, 2022
Views
Read Time
7 Mins
share image icon
In this article
Chevron in toc
View All
How to do Reverse String in Java Using Various Methods

String manipulation is an important learning point for everyone in their programming journey. In essence, strings can be understood as a sequence of characters. In the Java programming language, strings are independent objects that support different operations and modifications. 

Check out our free courses to get an edge over the competition.

When it comes to string manipulation, one of the foremost roadblocks is learning how to reverse a string in Java. Broadly, there are five ways you can go about reversing your string in Java. 

This article walks you through all the five methods to help you understand different approaches toward using Java program to reverse a string. 

Ads of upGrad blog

Learn Software Development Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs or Masters Programs to fast-track your career.

1. String Reversal Using CharAt Method

Check out the code snippet below to understand how we use the CharAt() method to reverse an input string. In terms of working, this approach works by first extracting all the characters from the input string. Our method is mainly used to return characters at specific indices in the given string. Then, the characters can be appended to the string in the reverse order to arrive at the desired reversed string. 

Check out upGrad’s Advanced Certification in DevOps 

String Reversal Using CharAt Method image

Explore our Popular Software Engineering Courses

When you execute the above mentioned Java program, you get the following output:

Enter the input string

Hello

The output string reversed is as follows: olleH

This is one of the easier and more direct approaches you can take to reverse a String in Java. Now, let’s move ahead and look at some more techniques to get the same result – i.e., reversed string. 

Check out upGrad’s Advanced Certification in Cyber Security

2. StringBuilder/String Buffer Class to Reverse a String

These two classes come inbuilt with a reverse() method that can be easily used to reverse your string. The method is programmed in a manner to replace your character sequence with the reverse ordered characters. The code snippet below gives an overview of how you can reverse a string in Java using StringBuilder/StringBuffer class. 

Executing the above piece of code will return the following result on your screen: 

Reversed string is: darGpu ot emocleW

Alternatively, you can also use the StringBuffer class and its reverse() method in the same fashion as above. Here is a piece of code that does exactly that: 

When you execute the above-mentioned code, you will get the same output as earlier. In essence, both the StringBuilder as well as the StringBuffer classes come inbuilt with a reverse() function that can quickly reverse your input strings without having the need to hard code it. 

In-Demand Software Development Skills

While it is true that both StringBuffer, as well as StringBuilder, use the same approach to arrive at the final reversed string, StringBuilder is generally preferred. The reason for that is the speed and synchronicity of the StringBuilder class as compared to the StringBuffer class. 

Now, let’s move to other methods of reversing a string in Java!

3. Reverse Iteration to Reverse a String

This approach of reversing a string in Java takes a more programming-oriented approach and tries to reverse the string by using logical constructs. To do this, we first convert the input string into an array of different characters. This is done using the CharArray() method. Then, we just iterate over the given array in reverse order and keep printing the characters at each index. That way, we have our reversed string as the output! Here is how that is done: 

On executing the above code, you get the following output. Both the input strings have been reversed as was required: 

Read our Popular Articles related to Software Development

llA iH

darGup  ot emocleW

This approach is fairly straightforward. Once you have the array of characters from the input string, you can manipulate it whichever way you like. Remember, strings are immutable, but arrays are not. So that idea can be used to our advantage once we have an array of characters from the string, and wish to perform any string manipulations. Now, let’s look at another approach for string reversal in Java – one that uses the concept of recursion. 

4. Recursion for reversing the string

Recursion is a fancy way of saying “a function that calls itself”. However, it is an extremely important concept in the world of computer science and forms the base of many, more complex, concepts and theories. 

The following example shows how recursion can help us arrive at our reverse string in Java. 

On running the above code, you get the following output:

Enter the string : upGrad is for one and all! Java is the blooming technology since its existence

Reversed String: !lla dna eno rof si darGpu”

If you’re having trouble understanding the above program, don’t worry. We have simply created the object for our StringRecursion class. Using the sc.nextLine() method, we read the input string character by character and store it in the variable s. Then, we call the reverse method to get the final work done and arrive at the desired output.

5. Reversing different letters in a string

While this is not directly related to string reversal, it is a good approach, and you should know this. While we don’t want to reverse the entire string, we want to reverse each word in the string. So, “Hello people” will not become “elpoep olleH”, but “olleH elpoep”. 

Here is how this can be achieved using Java: 

When you execute the above code, you will get the following output: 

Hello

students

olleH stneduts

Conclusion 

With that, we come to the end of the different ways of performing string reversal in Java. Our advice is that you take the hands-on to learning. Now that you know the basics of how to reverse string in Java, you should open a compiler and start programming. Play around with the different functions, try out different input strings, and see what you find! 

Ads of upGrad blog

Learning by experimenting is undoubtedly the best way to gain knowledge, especially when it is about learning programming or other problem-solving techniques. 

At upGrad, we understand the importance of learning by doing, which reflects in all of our courses and training initiatives. Our practical curriculum ensures you get all the required theoretical and hands-on training. 

Our Executive Post Graduate Programme in Software Development – Specialisation in Full Stack Development course demands no prior coding experience and trains you on MERN stack and microservices, JavaScript, and more. We enable this by providing you 1:1 career mentorship sessions with industry mentors, an opportunity to work on the capstone project and solidify your learnings, and a peer group that is there to support you 24×7! Check out the course page and get yourself enrolled soon!

Profile

Pavan Vadapalli

Blog Author
Director of Engineering @ upGrad. Motivated to leverage technology to solve problems. Seasoned leader for startups and fast moving orgs. Working on solving problems of scale and long term technology strategy.

Frequently Asked Questions (FAQs)

1Is there any inbuilt reverse function in Java?

Yes, the reverse function in Java has an inbuilt method with the StringBuilder and StringBuffer classes.

2 Can we do string reversal in Java without using inbuilt functions?

Sure, you can efficiently perform string reversal in Java using iteration, recursion, looping, and other programming constructs without requiring inbuilt classes. You must first convert your string into a character array, and then things will become easier.

3Is string reversal in Java difficult?

No, Java provides multiple ways to perform string reversal, and all of those ways are pretty intuitive and easy to understand. Just remember - you need to do it to know it, just reading won’t cut it!

Explore Free Courses

Suggested Tutorials

View All

Suggested Blogs

Top 14 Technical Courses to Get a Job in IT Field in India [2024]
90952
In this Article, you will learn about top 14 technical courses to get a job in IT. Software Development Data Science Machine Learning Blockchain Mana
Read More

by upGrad

15 Jul 2024

25 Best Django Project Ideas & Topics For Beginners [2024]
143863
What is a Django Project? Django projects with source code are a collection of configurations and files that help with the development of website app
Read More

by Kechit Goyal

11 Jul 2024

Must Read 50 OOPs Interview Questions & Answers For Freshers & Experienced [2024]
124781
Attending a programming interview and wondering what are all the OOP interview questions and discussions you will go through? Before attending an inte
Read More

by Rohan Vats

04 Jul 2024

Understanding Exception Hierarchy in Java Explained
16879
The term ‘Exception’ is short for “exceptional event.” In Java, an Exception is essentially an event that occurs during the ex
Read More

by Pavan Vadapalli

04 Jul 2024

33 Best Computer Science Project Ideas & Topics For Beginners [Latest 2024]
198249
Summary: In this article, you will learn 33 Interesting Computer Science Project Ideas & Topics For Beginners (2024). Best Computer Science Proje
Read More

by Pavan Vadapalli

03 Jul 2024

Loose Coupling vs Tight Coupling in Java: Difference Between Loose Coupling & Tight Coupling
65177
In this article, I aim to provide a profound understanding of coupling in Java, shedding light on its various types through real-world examples, inclu
Read More

by Rohan Vats

02 Jul 2024

Top 58 Coding Interview Questions & Answers 2024 [For Freshers & Experienced]
44557
In coding interviews, a solid understanding of fundamental data structures like arrays, binary trees, hash tables, and linked lists is crucial. Combin
Read More

by Sriram

26 Jun 2024

Top 10 Features & Characteristics of Cloud Computing in 2024
16289
Cloud computing has become very popular these days. Businesses are expanding worldwide as they heavily rely on data. Cloud computing is the only solut
Read More

by Pavan Vadapalli

24 Jun 2024

Top 10 Interesting Engineering Projects Ideas & Topics in 2024
43094
Greetings, fellow engineers! As someone deeply immersed in the world of innovation and problem-solving, I’m excited to share some captivating en
Read More

by Rohit Sharma

13 Jun 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon