Java indexOf() 方法

Java String類Java String類


indexOf() 方法有以下四種形式:

  • public int indexOf(int ch): 返回指定字符在字符串中第一次出現(xiàn)處的索引,如果此字符串中沒有這樣的字符,則返回 -1。

  • public int indexOf(int ch, int fromIndex): 返回指定字符在字符串中第一次出現(xiàn)處的索引,如果此字符串中沒有這樣的字符,則返回 -1。

  • int indexOf(String str): 返回指定字符在字符串中第一次出現(xiàn)處的索引,如果此字符串中沒有這樣的字符,則返回 -1。

  • int indexOf(String str, int fromIndex): 返回指定字符在字符串中第一次出現(xiàn)處的索引,如果此字符串中沒有這樣的字符,則返回 -1。

語法

public int indexOf(int ch )

或

public int indexOf(int ch, int fromIndex)

或

int indexOf(String str)

或

int indexOf(String str, int fromIndex)

參數(shù)

  • ch -- 字符。

  • fromIndex -- 開始搜索的索引位置。

  • str -- 要搜索的子字符串。

返回值

指定子字符串在字符串中第一次出現(xiàn)處的索引,從指定的索引開始。

實例

public class Main {
	public static void main(String args[]) {
		String Str = new String("W3Cschool教程:m.hgci.cn");
		String SubStr1 = new String("youj");
		String SubStr2 = new String("com");

		System.out.print("查找字符 o 第一次出現(xiàn)的位置 :" );
		System.out.println(Str.indexOf( 'o' ));
		System.out.print("從第14個位置查找字符 o 第一次出現(xiàn)的位置 :" );
		System.out.println(Str.indexOf( 'o', 14 ));
		System.out.print("子字符串 SubStr1 第一次出現(xiàn)的位置:" );
		System.out.println( Str.indexOf( SubStr1 ));
		System.out.print("從第十五個位置開始搜索子字符串 SubStr1 第一次出現(xiàn)的位置 :" );
		System.out.println( Str.indexOf( SubStr1, 15 ));
		System.out.print("子字符串 SubStr2 第一次出現(xiàn)的位置 :" );
		System.out.println(Str.indexOf( SubStr2 ));
	}
}

以上程序執(zhí)行結(jié)果為:

查找字符 o 第一次出現(xiàn)的位置 :6

從第14個位置查找字符 o 第一次出現(xiàn)的位置 :22

子字符串 SubStr1 第一次出現(xiàn)的位置:-1

從第十五個位置開始搜索子字符串 SubStr1 第一次出現(xiàn)的位置 :-1

子字符串 SubStr2 第一次出現(xiàn)的位置 :-1


Java String類Java String類