- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to check Palindrome String in java?
StringBuffer provides a method with name reverse() one way to check for a palindrome is
- Create a StringBuffer object by passing the required string as a parameter to the constructor.
- Reverse the contents of the object using the reverse() method.
- Convert the StringBuffer object to Sting using the toString() method.
- Now, compare the String and the reversed one, if true, the given string is a palindrome.
Example
public class StringPalindrome { public static void main(String args[]) { String myString = "anna"; StringBuffer buffer = new StringBuffer(myString); buffer.reverse(); String data = buffer.toString(); if(myString.equals(data)){ System.out.println("Given String is palindrome"); } else { System.out.println("Given String is not palindrome"); } } }
Output
Given String is palindrome
- Related Articles
- Java program to check string as palindrome
- How to check a String for palindrome using arrays in java?
- How to check a string is palindrome or not in Jshell in Java 9?
- Java program to check palindrome
- How to check if String is Palindrome using C#?
- Check Palindrome in Java Program
- Palindrome in Python: How to check a number is palindrome?
- Python Program to Check String is Palindrome using Stack
- How to Check Whether a String is Palindrome or Not using Python?
- How to check for palindrome in R?
- Program to check a string is palindrome or not in Python
- Recursive function to check if a string is palindrome in C++
- How to find if a string is a palindrome using Java?
- Java program to check if binary representation is palindrome
- Check if a string is palindrome in C using pointers

Advertisements