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
Use String.split to break the string apart. Then, run your code on each part. You can put the string together again using StringBuilder and a loop.