Is there a way to turn a char into a String or a String with one letter into a char (like how you can turn an int>
char
String
int>
In order to convert string to char
String str = "abcd"; char arr [] = new char[len]; // len is the length of the array arr = str.toCharArray();