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