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