helloWorld
* Helloworld
* 思路:
* 1. 截图首字母,转换成大写
* 2. 截取其他父母,转换成小写
* 3. 拼接
*
public class StringTest {
public static void main(String[] args) {
String str = "helloWorld";
String str2 = str.substring(0,1).toUpperCase().concat(str.substring(1).toLowerCase());
System.out.println(str2);
}
|
|