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

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

java.lang.String.indexOf(int ch, int fromIndex) 方法返回此字符串指定字符第一次出現處的索引,從開始搜索指定的索引處。
如果發生在由索引不超過fromIndex在這個String對象表示的字符序列值ch字符,那麼返回第一個匹配項的索引。

聲明

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

public int indexOf(int ch, int fromIndex)

參數

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

  • fromIndex-- 這是從索引開始搜索。

返回值

此方法返回字符在此對象大於或等於fromIndex表示的字符序列中第一次出現的索引,或-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 positive value as character is located
    System.out.println("index of letter 't' =  "
    + str.indexOf('t', 14)); 
      
    // returns positive value as character is located
    System.out.println("index of letter 's' =  "
    + str.indexOf('s', 10)); 
      
    // returns -1 as character is not in the string
    System.out.println("index of letter 'e' =  "
    + str.indexOf('e', 5));
  }
}

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

index of letter 't' = 21
index of letter 's' = 16
index of letter 'e' = -1