此方法將返回指定字元在字串中第一次出現的索引或如果未出現指定字元,則返回-1
。
語法
以下是此方法的語法 -
public int indexOf(char ch)
ch
- 指定的一個字元。ch
所在的索引值。
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tw511.com");
System.out.print("Found Index :" );
System.out.println(Str.indexOf( 'Y' ));
}
}
執行上面範例程式碼,得到以下結果:
Found Index :11