Groovy - Strings reverse()

创建一个与此字符串相反的新字符串。


语法

String reverse()

参数

None


返回值

此方法返回结果字符串。

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

class Example {
   static void main(String[] args) {
      String a = "Hello World";
      println(a.reverse());
   } 
}

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

dlroW olleH

❮ Groovy 字符串