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
。
下面的例子顯示java.lang.String.indexOf()
方法的使用。
package com.yiibai;
import java.lang.*;
public class StringDemo {
public static void main(String[] args) {
String str = "This is yiibai tutorials";
// 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' = 15
index of letter 's' = 23
index of letter 'e' = -1