常见对象_把字符串的首字母转大写其他转小写

时间:2022-03-23 09:10:53
package cn.itcast_05;

/*
 * 需求:把一个字符串的首字母转成大写,其余为小写。(只考虑英文大小写字母符)
 * 
 * 举例:
 * 		helloWORLD
 * 结果:
 * 		Helloworld
 * 
 * 分析:
 * 		A:先获取第一个字符
 * 		B:获取除了第一个字符以外的字符
 * 		C:把A转成大写
 * 		D:把B转成小写
 * 		E:C拼接D
 */
public class StringTest {
	public static void main(String[] args) {
		// 定义一个字符串
		String s = "helloWorlD";

		// 先获取第一个字符
		String s1 = s.substring(0, 1);

		// 获取除了第一个字符以外的字符
		String s2 = s.substring(1);

		// 把A转成大写
		String s3 = s1.toUpperCase();

		// 把B转成小写
		String s4 = s2.toLowerCase();

		// C拼接D
		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);

	}
}