StringDemo4

package cn.zuoye;
/*
 * 需求:把一个字符串的首字母转成大写,其余为小写。
 */
public class StringDemo4 {
 public static void main(String[] args) {
  // 定义一个字符串
  String s = "helloworld";
  // 先获取第一个字符
  String s1 = s.substring(0, 1);
  // 获取除了第一个字符以外的字符
  String s2 = s.substring(1);
  String s3 = s1.toUpperCase();
  String s4 = s2.toLowerCase();
  String s5 = s3.concat(s4);// 拼接
  System.out.println(s5);
  // 优化
  String result = s.substring(0, 1).toUpperCase().concat(s.
    substring(1).toLowerCase());
  System.out.println("result:" + result);
 }
}
posted @ 2018-11-02 09:33  阿蓉  阅读(119)  评论(0编辑  收藏  举报