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。

异常

示例

以下示例演示了 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
java_lang_string.htm
广告