1. 程式人生 > >53、把任意字串的首字母轉成大寫,其餘為小寫 "AdaaaxxccjDDqqql"。

53、把任意字串的首字母轉成大寫,其餘為小寫 "AdaaaxxccjDDqqql"。

@53、把任意字串的首字母轉成大寫,其餘為小寫 “AdaaaxxccjDDqqql”。wn編輯器

	public class Test53 {
	public static void main(String[] args) {
		String s = "xxccjDDqqql";
		String substring2 = s.substring(0, 1);
		String substring = s.substring(1);
		System.out.println(substring);
		System.out.println("-------");
		String upperCase = substring2.toUpperCase();
		System.out.print(upperCase);
		String lowerCase = substring.toLowerCase();
		System.out.println(lowerCase);
				
	}
	}
	```