Groovy - toUpperCase()


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

句法

String toUpperCase()

参数

没有任何

返回值

修改后的字符串为大写。

例子

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

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

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

HELLOWORLD
groovy_strings.htm