Reputation: 2873
import java.util.Scanner;
public class Test
{
public static void main(String[] args)
{
char[] sArray;
Scanner scan = new Scanner(System.in);
System.out.print("Enter a Palindrome : ");
String s = scan.nextLine();
sArray = new char[s.length()];
for(int i = 0; i < s.length(); i++)
{
s.toLowerCase();
sArray[i] = s.charAt(i);
System.out.print(sArray[i]);
}
}
}
Upvotes: 4
Views: 20667
Reputation: 1039170
It doesn't work because strings are immutable. You need to reassign:
s = s.toLowerCase();
The toLowerCase()
returns the modified value, it doesn't modify the value of the instance you are calling this method on.
Upvotes: 27