Groovy - toLowerCase()


将此字符串中的所有字符转换为小写。

句法

String toLowerCase()

参数

没有任何

返回值

修改后的字符串为小写。

以下是此方法的使用示例 -

class Example { 
   static void main(String[] args) { 
      String a = "HelloWorld"; 
      println(a.toLowerCase()); 
   } 
}

当我们运行上面的程序时,我们将得到以下结果 -

helloworld
groovy_strings.htm