toLowerCase方法

toLowerCase()方法用来返回一个字符串,该字符串中的字母被转换成小写字母,而且对非字母字符不会产生影响
示例如下:

public class TwoLowerCaseTest { public static void main(String[] args) { String t = "Hello World AQWEsd123^&*"; String lowerCase = t.toLowerCase(); System.out.println(lowerCase); } }

结果:
hello world aqwesd123^&*




【toLowerCase方法】

    推荐阅读