Groovy - getAt()



语法

String getAt(int index)

参数

  • Index – 要返回字符串的位置

返回值

索引位置的字符串值

示例

下面是使用该方法的一个示例 −

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

运行上述程序后,将得到以下结果 −

l 
W 
O
groovy_strings.htm
广告