Java中indexOf的用法 部落格園

2021-09-04 04:38:05 字數 1825 閱讀 9699

indexof有四種用法:

1.indexof(int ch) 在給定字串中查詢字元(ascii),找到返回字元陣列所對應的下標找不到返回-1

2.indexof(string str)在給定符串中查詢另乙個字串。。。

3.indexof(int ch,int fromindex)從指定的下標開始查詢某個字元,查詢到返回下標,查詢不到返回-1

4.indexof(string str,int fromindex)從指定的下標開始查詢某個字串。。。

publicclasstest ;

string str=newstring(ch);

ch)

str.indexof(104);

system.out.println(str.indexof(104));//h所在下標為3

str)

str.indexof("hell");

system.out.println(str.indexof("hell"));//3

ch,int fromindex)

str.indexof(101,4);//4

system.out.println(str.indexof(101,4));

str.indexof(101,5);//沒有查詢到返回-1

system.out.println(str.indexof(101,5));

str,int fromindex)

str.indexof("che",0);//等價於str.indexof("che")

system.out.println(str.indexof("che",0));//2

}

}

JS中indexOf的用法

string.indexof char,startindex count 返回指定字元在原字串中的第乙個匹配項的索引。可指定字元開始檢索位置和指定長度的字元,若沒有找到該字元,則返回 1。也可以判斷陣列中是否包含某個值。示例1 查詢字串中某一字元從頭開始第一次出現的索引 var str hello ...

js中indexOf的用法詳解

string.indexof 方法 char,startindex count 報告指定字元在此例項中的第乙個匹配項的索引。搜尋從指定字元位置開始,並檢查指定數量的字元位置。引數value 要查詢的 unicode 字元。對 value 的搜尋區分大小寫。startindex int32 可選項,搜...

indexOf 定義和用法

indexof 定義和用法 indexof 方法可返回某個指定的字串值在字串中首次出現的位置。語法stringobject.indexof searchvalue,fromindex 引數描述 searchvalue 必需。規定需檢索的字串值。fromindex 可選的整數引數。規定在字串中開始檢索...