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 − 这是开始搜索的索引。


返回值

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


异常

NA


示例

下面的例子展示了 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