char [] toCharArray(): 把字符串转换成字符数组
String toLowerCase():把字符串转换为小写字符
String toUpperCase():把字符串转换为大写字符
字符串遍历法目前有两种:1.length() 加上charAt(); 方法遍历
2.把字符串转换为数组,然后遍历
Code:
String s = "abcdefg";
char [] chs = s.tocharArray(); //把字符串转换成字符数组,定义char类型的数组chs
for (int x=0;x<chs.length;x++){
System.out.println(chs[x]);
}
System.out.println("HelloWorld".toLowerCase()); //helloworld 把字符串转换为小写字符
System.out.println(“HelloWorld”.toUpperCase()); //HELLOWORLD 把字符串转换为大写字符
}