写一个 java 程序,逆转字符串中每个单词的 tOGGLE?
要执行逆转并切换对字符串中单词的拆分,请使用 split() 方法对每个单词进行逆转,将每个单词的第一个字母更改为小写,并将其余字母更改为大写。
例子
import java.lang.StringBuffer; public class ToggleReverse { public static void main(String args[]){ String sample = "Hello How are you"; String[] words = sample.split(" "); String result = ""; for(String word:words){ StringBuffer s = new StringBuffer(word); word = s.reverse().toString(); String firstSub = word.substring(0, 1); String secondSub = word.substring(1); result = result+firstSub.toLowerCase()+secondSub.toUpperCase()+" "; } System.out.println(result); } }
输出
oLLEH wOH eRA uOY
广告