提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
ToLowerCase将字符串转换为所有小写字母:
public class Main { public static void main(String[] args) { String s = "This Is a Test"; s = s.toLowerCase(); /** from 时代Java - N o w J a v a . c o m**/ System.out.println(s); } }