Java中的 StringBuilder lastIndexOf() 方法及示例
在 StringBuilder 类中,根据传递给它的参数,有两种类型的 lastIndexOf() 方法。
lastIndexOf(String str)
StringBuilder 类的lastIndexOf(String str)方法是用于返回字符串中最后一次出现作为参数传递的子字符串的索引的内置方法。空字符串“”的最后一次出现被认为出现在索引值 this.length() 处。如果子字符串 str 不存在,则返回 -1。
句法:
public int lastIndexOf(String str)
参数:该方法只接受一个参数str ,它是String类型的值是指我们要获取的最后一次出现的索引的String。
返回值:此方法返回传递的子字符串的最后一次出现的索引,如果不存在这样的子字符串,则返回 -1。
下面的程序说明了Java.lang.StringBuilder.lastIndexOf() 方法:
示例 1:当传递的子字符串存在于序列中时。
// Java program to demonstrate
// the lastIndexOf() Method.
class GFG {
public static void main(String[] args)
{
// create a StringBuilder object
// with a String pass as parameter
StringBuilder str
= new StringBuilder("GeeksForGeeks");
// print string
System.out.println("String contains = " + str);
// get index of string For
int index = str.lastIndexOf("Geeks");
// print results
System.out.println("Index of last occurrence"
+ " string \"Geeks\"= "
+ index);
}
}
String contains = GeeksForGeeks
Index of last occurrence string "Geeks"= 8
示例 2:当传递的子字符串在序列中不存在时。
// Java program to demonstrate
// the lastIndexOf() Method.
class GFG {
public static void main(String[] args)
{
// create a StringBuilder object
// with a String pass as parameter
StringBuilder str
= new StringBuilder(
"Geeks for Geeks contribute");
// print string
System.out.println("String contains = " + str);
// get index of string article
int index = str.lastIndexOf("article");
// print results
System.out.println("Index of string"
+ " 'article' = "
+ index);
}
}
String contains = Geeks for Geeks contribute
Index of string 'article' = -1
lastIndexOf(String str, int fromIndex)
StringBuilder 类的lastIndexOf(String str, int fromIndex)方法是用于返回原始字符串中子字符串索引的内置方法。但是对子字符串的搜索从 0 索引开始到索引fromIndex 。在这个新范围 (0-fromIndex) 中,现在找到了最后一次出现的子字符串,并且此函数返回了起始索引。如果在该范围内未找到子字符串,则返回 -1。请注意,将搜索最后一次出现的子字符串的范围的起点始终为零。用户只能设置终点。
句法:
public int lastIndexOf(String str, int fromIndex)
参数:此方法接受两个 one 参数:
- str是 String 类型的 value 是指我们试图获取其索引的子字符串
- fromIndex是 Integer 类型的值,是指从其开始向后搜索的索引。
返回:此方法返回从指定索引开始的最后一次出现的传递子字符串的索引,如果不存在这样的子字符串,则返回 -1。
下面的程序说明了 StringBuilder.lastIndexOf() 方法:
示例 1:当传递的子字符串存在于序列中时。
// Java program to demonstrate
// the lastIndexOf() Method.
class GFG {
public static void main(String[] args)
{
// create a StringBuilder object
// with a String pass as parameter
StringBuilder str
= new StringBuilder("WeGeeksLoveGeeksForGeeks");
// print string
System.out.println("String contains = " + str);
// get index of last occurrence of substring till 15th position of original String
int index = str.lastIndexOf("Geeks", 15);
// print results
System.out.println("index of last occurrence"
+ " string \"Geeks\" = "
+ index);
}
}
String contains = WeGeeksLoveGeeksForGeeks
index of last occurrence string "Geeks" = 11
示例 2:当 fromIndex 为 < 子字符串的最后出现索引时
// Java program to demonstrate
// the lastIndexOf() Method.
class GFG {
public static void main(String[] args)
{
// create a StringBuilder object
// with a String pass as parameter
StringBuilder str
= new StringBuilder("Geeks for Geeks contribute");
// print string
System.out.println("String contains = " + str);
// get index of string Geeks from index 15
int index = str.lastIndexOf("contribute", 10);
// print results
System.out.println("index of string"
+ " 'contribute ' = "
+ index);
}
}
String contains = Geeks for Geeks contribute
index of string 'contribute ' = -1
参考资料:
- https://docs.oracle.com/javase/10/docs/api/java Java Java, int)
- https://docs.oracle.com/javase/10/docs/api/java Java Java)