Groovy - subString()


返回一个新字符串,它是此字符串的子字符串。此方法有 2 种不同的变体

  • String substring(int beginIndex) - 用右侧附加的空格填充字符串。

句法

String substring(int beginIndex)

参数

  • beginIndex - 开始索引,包含在内。

返回值- 指定的子字符串。

  • String substring(int beginIndex, int endIndex) - 使用附加到右侧的填充字符来填充字符串。

句法

String substring(int beginIndex, int endIndex)

参数

  • beginIndex - 开始索引,包含在内。

  • endIndex - 结束索引,不包括在内。

返回值- 指定的子字符串。

例子

以下是两种变体的使用示例 -

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

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

oWorld 
oWor
groovy_strings.htm