将此String中的所有字符转换为小写。
String toLowerCase()
没有
小写的修改后的字符串。
以下是此方法的使用示例 -
class Example { static void main(String[] args) { String a = "HelloWorld"; println(a.toLowerCase()); } }
当我们运行上述程序时,我们将得到以下结果 -
helloworld