/*
* 需求:把字符串的首字母转成大写,其余为小写
* 思路:
* A:截取首字母。
* B:截取其他字母。
* C:把A转大写+B转小写
*/
public class Case_02_03 {
public static void main(String[] args) {
String s = "heLLoWorld";
String s1 = s.substring(0, 1);
String s2 = s.substring(1);
System.out.println(s1.toUpperCase().concat(s2.toLowerCase()));
}
}
|
|