位置:首頁 > Java技術 > java.lang > java.lang.String.indexOf(int ch)方法實例

java.lang.String.indexOf(int ch)方法實例

java.lang.String.indexOf(int ch) 方法返回該字符串指定字符第一次出現處的索引。
如果在通過第一這樣發生的這個字符串對象,則索引(Unicode代碼單元)所表示的字符序列ch值的字符被返回。

聲明

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

public int indexOf(int ch)

參數

  • ch-- 這是一個字符(Unicode代碼點)。

返回值

此方法返回字符在該對象表示的字符序列中第一次出現的索引,或者-1,如果該字符不會找到。

異常

  • NA

例子

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

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    String str = "This is yiibai";
    
    // returns the index of occurrence of character s
    System.out.println("index of letter 's' = " 
    + str.indexOf('s')); 
      
    // returns -1 as character e is not in the string
    System.out.println("index of letter 'e' = " 
    + str.indexOf('e'));
  }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

index of letter 's' = 3
index of letter 'e' = -1