java.lang.String.indexOf(String str)方法範例


java.lang.String.indexOf(String str) 方法返回該字串指定的子串中第一次出現處的索引。返回整數是最小的k值:this.startsWith(str, k) 是true。

宣告

以下是java.lang.String.indexOf()方法宣告

public int indexOf(String str)

引數

  • str-- 這是一個字串值。

返回值

如果字串引數時作為該子物件中此方法返回, 那麼第一個子字串的第一個字元的索引被返回;如果它不出現的一個子串,則返回-1。

異常

  • NA

例子

下面的例子顯示java.lang.String.indexOf()方法的使用。

package com.yiibai;

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