Java String indexOf(int ch, int fromIndex)方法

2019-10-16 22:21:57

Java String indexOf(int ch, int fromIndex)方法將返回指定字元在字串指定位置開始第一次出現的索引或如果未出現指定字元,則返回-1

語法

以下是此方法的語法 -

public in indexOf(char ch, int fromIndex)

引數

  • ch - 指定的一個字元。
  • fromIndex - 開始搜尋的索引。

返回值

  • 返回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