Groovy - toUpperCase()

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


语法

String toUpperCase()

参数

None


返回值

修改后的大写字符串。


示例

以下是该方法的用法示例 −

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

当我们运行上面的程序时,会得到下面的结果 −

HELLOWORLD

❮ Groovy 字符串