Java String indexOf()方法

2019-10-16 22:21:55

此方法將返回指定字元在字串中第一次出現的索引或如果未出現指定字元,則返回-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