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


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


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

indexOf(String str)

StringBuffer类的indexOf(String str)方法用于返回字符串的索引,该字符串的索引是该对象包含的序列中第一次出现的传递子字符串作为参数的。如果子字符串str不存在,则返回-1代替索引。

用法:


public int indexOf(String str)

参数:此方法接受str,这是子字符串类型值,它引用我们要获取其索引的String。
返回值:该方法返回索引第一次出现的传递子字符串的值;如果不存在这样的子字符串,则返回-1。

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

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

// Java program to demonstrate 
// the indexOf() Method. 
  
class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer("GeeksForGeeks"); 
  
        // print string 
        System.out.println("String: " + str); 
  
        // get index of string For 
        int index = str.indexOf("For"); 
  
        // print results 
        System.out.println("index of 'For': "
                           + index); 
    } 
}
输出:
String: GeeksForGeeks
index of 'For': 5

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

// Java program to demonstrate 
// the indexOf() Method. 
  
class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer("Geeks for Geeks contribute"); 
  
        // print string 
        System.out.println("String: " + str); 
  
        // get index of string article 
        int index = str.indexOf("article"); 
  
        // print results 
        System.out.println("index of 'article': "
                           + index); 
    } 
}
输出:
String: Geeks for Geeks contribute
index of 'article': -1

indexOf(String str,int fromIndex):

StringBuffer类的indexOf(String str,int fromIndex)方法用于返回字符串中的索引,该索引是从指定索引“ fromIndex”开始的第一次出现的传递子字符串。如果子字符串str不存在,则返回-1。 fromIndex是整数类型值,它是指搜索开始的索引。如果字符串出现在搜索开始的索引之前而不是之后,则-1将返回。

用法:

public int indexOf(String str, int fromIndex)

参数:此方法接受两个参数str:String类型值是指要获取其索引的String,fromIndex是Integer类型值是指要开始搜索的索引。

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


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

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

// Java program to demonstrate 
// the indexOf() Method. 
  
class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer("GeeksForGeeks"); 
  
        // print string 
        System.out.println("String: " + str); 
  
        // get index of string Form index 3 
        int index = str.indexOf("For", 3); 
  
        // print results 
        System.out.println("index of 'For': "
                           + index); 
    } 
}
输出:
String: GeeksForGeeks
index of 'For': 5

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

// Java program to demonstrate 
// the indexOf() Method. 
  
class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a StringBuffer object 
        // with a String pass as parameter 
        StringBuffer str 
            = new StringBuffer("Geeks for Geeks contribute"); 
  
        // print string 
        System.out.println("String: " + str); 
  
        // get index of string Geeks from index 15 
        int index = str.indexOf("Geeks", 15); 
  
        // print results 
        System.out.println("index of 'Geeks ': "
                           + index); 
    } 
}
输出:
String: Geeks for Geeks contribute
index of 'Geeks ': -1

参考文献: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuffer.html#indexOf(java.lang.String, int)



相关用法


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