Java String indexOf(String str)方法

2019-10-16 22:22:04

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