Java StringBuffer indexOf()方法

java.lang.StringBuffer.indexOf(String str) 方法返回该字符串指定的子串中第一次出现处的索引。

1 语法

public int indexOf(String str)

2 参数

str : 这是任意的字符串

3 返回值

如果字符串参数存在于该对象中的子字符串,那么第一个这样的子字符串的第一个字符的索引返回;如果没有找到一个子串,则返回-1。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StringBuffer indexOf()方法
 */
import java.lang.*;

public class StringBufferDemo {

  public static void main(String[] args) {

    StringBuffer buff = new StringBuffer("programming language");
    System.out.println("buffer = " + buff);
  
    // returns the index of the specified substring
    System.out.println("Index of substring  = " + buff.indexOf("age"));
    
    // returns -1 as substring is not found 
    System.out.println("Index of substring  = " + buff.indexOf("k"));
  }
}

输出结果为:

buffer = programming language
Index of substring = 17
Index of substring = -1

 

热门文章

优秀文章