String word = "Place AA BC CD EF AB";
Say I have a simple string word declared like that. Now I want to ignore the first word and go through the string contents excluding the first word. How would this be possible. Could I split at the first whitespace or is there some other way. Any help will be appreciated. Say there's an array called String [] list. This String word is list[i]. How would I split that to ignore the first word within that.