代码
提交代码
public class StringMethod5 { public static void main(String[] args) { String str = "HELLO world"; // 先切割为数组 String[] strArr = str.split(" "); // 将数组中元素转换大小写并连接为一个新的字符串 String result = strArr[0].toLowerCase() + " " + strArr[1].toUpperCase(); System.out.println("字符串str的大小写互换后为:" + result); } }
运行结果