i try to create a program to encrypt text into code with my own rule. but, i found some problems to split the text and send it to array
i want to see this in Msg array
Msg[0] = "h";
Msg[1] = "e";
Msg[2] = "l";
Msg[3] = "l";
Msg[4] = "o";
and i try to code like this
String text = "hello";
String[] Msg = new String[] {text};
this code works, but the result isn't like i want. can you help me to solve this problem
thanks..