Hello, I am trying to convert a String to an array of char's so that I can manipulate each char without using String.charAt for every single character. My problem is that the toCharArray() method doesn't seem to be functioning properly.
For example,
String input = "BOBOBOBOBO";
char inArray[] = input.toCharArray();
I get this as my output:
INPUT: BOBOBOBOBO
INARRAY: [C@89ae9e
any ideas??? Thanks,
dub