1. 程式人生 > >java中String.indexOf()用法

java中String.indexOf()用法

pos ava 輸出結果 ear 輸出 www println print href

查找指定字符或字符串在字符串中第一次出現地方的索引,未找到的情況返回 -1.

例如

String.indexOf(String str)

String str1="012345";
String str2="23";
System.out.println( str1.indexOf(str2) );

輸出結果:2。

重載方法有

String.indexOf(String str,int index)

從index的地方開始找,返回第一次出現的索引

String str1="012345012345";
String str2="23";
System.out.println( str1.indexOf(str2,5) );

輸出結果:8.

PS:轉自:http://www.cnblogs.com/xumz/p/9293434.html

java中String.indexOf()用法