https://zhidao.baidu.com/question/344967589.html
java.lang.String.charAt() 方法返回指定索引处的char值。http://www.yiibai.com/javalang/string_charat.html
(toLowerCase)toUpperCase的意思是将所有的英文字符转换为大写字母,如:
String cc = “aBc123”.toUpperCase();结果就是:ABC123。
时间: 2024-11-06 19:48:37