Java.lang.String.indexOf() 方法

描述

java.lang.String.indexOf(String str) 方法返回此字符串中第一次出现指定子字符串的索引。 返回的整数是最小值 k 使得: this.startsWith(str, k) 为真。


声明

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

public int indexOf(String str)

参数

str − 这是一个字符串的值。


返回值

如果字符串参数作为该对象中的子字符串出现,则此方法返回,则返回第一个此类子字符串的第一个字符的索引; 如果它不作为子字符串出现,则返回 -1。


异常

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";
     
      // returns index of first character of the substring "tutorials" 
      System.out.println("index =  " + str1.indexOf("tutorials")); 
      
      // returns -1 as substring "admin" is not located
      System.out.println("index =  " + str1.indexOf("admin"));    
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

index = 15
index = -1