Java.lang.String.indexOf() 方法



描述

java.lang.String.indexOf(String str, int fromIndex) 方法返回在此字符串中指定子字符串第一次出现的索引,从指定索引开始。返回的整数是满足以下条件的最小值 k:

k >= Math.min(fromIndex, this.length()) && this.startsWith(str, k)

如果不存在这样的 k 值,则返回 -1。

声明

以下是 java.lang.String.indexOf() 方法的声明

public int indexOf(String str, int fromIndex)

参数

  • str − 这是要搜索的子字符串。

  • fromIndex − 这是开始搜索的索引。

返回值

此方法返回在此字符串中指定子字符串第一次出现的索引,从指定索引开始。

异常

示例

以下示例演示了 java.lang.String.indexOf() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) {

      String str1 = "Collections of tutorials at tutorials point";
     
      /*  search starts from index 10 and if located it returns 
         the index of the first character of the substring "tutorials" */
      System.out.println("index = " + str1.indexOf("tutorials", 10)); 
      
      /* search starts from index 9 and returns -1 as substring "admin"
         is not located */
      System.out.println("index = " + str1.indexOf("admin", 9));     
   }
}

让我们编译并运行上述程序,这将产生以下结果:

index = 15
index = -1
java_lang_string.htm
广告