DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Method To Check If The Given String Is Palindrom Or Not.
// Checks if the given string is a palindrome/not.
public static boolean isPalindrome(final String text) {
for (int i = 0, j = text.length() - 1; i < text.length() / 2; i++, j--) {
if (text.charAt(i) != text.charAt(j)) {
return false;
}
}
return true;
}





