当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java StringBuilder indexOf()用法及代码示例


在StringBuilder类中,根据传递给它的参数,有两种类型的indexOf()方法。

indexOf(String str)

StringBuilder类的indexOf(String str)方法是一种内置方法,用于为首次出现传递的子字符串作为参数返回String内的索引。如果子字符串str不存在,则返回-1。

用法:


public int indexOf(String str)

参数:此方法仅接受一个参数str,它是String类型的值,表示需要索引的String。

返回值:此方法返回传递的子字符串的第一个匹配项的索引;如果不存在此子字符串,则返回-1。

以下示例程序旨在说明StringBuilder.indexOf()方法:

示例1:当序列中存在传递的子字符串时。

// Java program to demonstrate 
// the indexOf() 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.indexOf("For"); 
  
        // print results 
        System.out.println("index of string 'For' = "
                           + index); 
    } 
}
输出:
String contains = GeeksForGeeks
index of string 'For' = 5

示例2:当传递的子字符串不存在于序列中时。

// Java program to demonstrate 
// the indexOf() 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.indexOf("article"); 
  
        // print results 
        System.out.println("Index of string"
                           + " 'article' = "
                           + index); 
    } 
}
输出:
String contains = Geeks for Geeks contribute
Index of string 'article' = -1

indexOf(String str, int fromIndex)

StringBuilder类的indexOf(String str,int fromIndex)方法是一种内置方法,用于从指定索引“ fromIndex”开始以字符串形式返回第一次出现的子字符串作为参数的索引。如果子字符串str不存在,则返回-1。 fromIndex是整数类型值,是指从其开始搜索的索引。此方法返回的索引是从序列的开头算起的,唯一的区别是此方法给出了搜索开始的索引。如果字符串出现在搜索开始的索引之前而不是之后,则返回-1。

用法:

public int indexOf(String str, int fromIndex)

参数:此方法接受两个参数:


  • str:这是String类型值,表示需要其索引的String。
  • fromIndex:这是整数类型值,它是指从中开始搜索的索引。

返回值:此方法返回从指定索引开始的第一次出现的传递子字符串的索引,如果不存在则返回-1。

以下示例程序旨在说明StringBuilder.indexOf()方法:

示例1:当序列中存在传递的子字符串时。

// Java program to demonstrate 
// the indexOf() 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 Form index 3 
        int index = str.indexOf("For", 3); 
  
        // print results 
        System.out.println("index of string"
                           + " \"For\" = "
                           + index); 
    } 
}
输出:
String contains = GeeksForGeeks
index of string "For" = 5

示例2:当序列中存在传递的子串但搜索索引大于子串索引时。

// Java program to demonstrate 
// the indexOf() 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.indexOf("Geeks", 15); 
  
        // print results 
        System.out.println("index of string 'Geeks ' = "
                           + index); 
    } 
}
输出:
String contains = Geeks for Geeks contribute
index of string 'Geeks ' = -1

参考文献:



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 StringBuilder indexOf() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。