I\'m trying split a string when ever a \" \" occurs, for example the sentence test abc. Then move the first letter in each word from first to last. I got the moving the letter t
If performance is an issue, consider using StringTokenizer instead of split, StringTokenizer is much faster.
split