reverse
通过在引号中包含字符串文本,在Groovy中构造一个字符串文字。
Groovy提供了多种表示String字面量的方法。 Groovy中的字符串可以用单引号('),双引号(“)或三引号(”“”)括起来。此外,由三重引号括起来的Groovy字符串可以跨越多行。
以下是Groovy中字符串使用的示例 -
class Example {
static void main(String[] args) {
String a = 'Hello Single';
String b = "Hello Double";
String c = "'Hello Triple" + "Multiple lines'";
println(a);
println(b);
println(c);
当我们运行上面的程序,我们将得到以下结果 -
Hello Single
Hello Double
'Hello TripleMultiple lines'
字符串索引
Groovy中的字符串是字符的有序序列。字符串中的单个字符可以通过其位置访问。这由索引位置给出。
字符串索引从零开始,以小于字符串长度的一个结束。 Groovy还允许负索引从字符串的末尾开始计数。
以下是Groovy中字符串索引的使用示例 -
class Example {
static void main(String[] args) {
String sample = "Hello world";
println(sample[4]); // Print the 5 character in the string
//Print the 1st character in the string starting from the back
println(sample[-1]);
println(sample[1..2]);//Prints a string starting from Index 1 to 2
println(sample[4..2]);//Prints a string starting from Index 4 back to 2
当我们运行上面的程序,我们将得到以下结果 -
o
基本字符串操作
首先让我们学习groovy中的基本字符串操作。它们在下面给出。
字符串方法
这里是String类支持的方法列表。