I need to convert a text message from the command line into an array of letters.
args(0) is a string, for example "The sky is beautiful today". And I want it to become theskyisbeautifultoday
args(o) could be any sentence
Eclipse keep showing error for:
String str = args(0);
char[] chs = str.toCharArray();
What could be wrong?