JavaScript indexOf() 方法和 lastIndexOf() 方法

來源:互聯網
上載者:User

標籤:blog   ast   ima   val   http   提示   它的   相同   tin   

一,定義和用法

indexOf() 方法可返回某個指定的字串值在字串中首次出現的位置。

lastIndexOf() 方法可返回一個指定的字串值最後出現的位置,在一個字串中的指定位置從後向前搜尋。

文法
stringObject.indexOf(searchvalue,fromindex)
stringObject.lastIndexOf(searchvalue,fromindex)

indexOf() 方法

參數 描述
searchvalue 必需。規定需檢索的字串值。
fromindex 可選的整數參數。規定在字串中開始檢索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略該參數,則將從字串的首字元開始檢索。

 lastIndexOf() 方法

參數 描述
searchvalue 必需。規定需檢索的字串值。
fromindex 可選的整數參數。規定在字串中開始檢索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略該參數,則將從字串的最後一個字元處開始檢索。

 傳回值

lastIndexOf() 方法如果在 stringObject 中的 fromindex 位置之前存在 searchvalue,則返回的是出現的最後一個 searchvalue 的位置。

說明

 indexOf() 方法將從頭到尾地檢索字串 stringObject,看它是否含有子串 searchvalue。開始檢索的位置在字串的 fromindex 處或字串的開頭(沒有指定 fromindex 時)。如果找到一個 searchvalue,則返回 searchvalue 的第一次出現的位置。stringObject 中的字元位置是從 0 開始的。

 lastIndexOf() 方法將從尾到頭地檢索字串 stringObject,看它是否含有子串 searchvalue。開始檢索的位置在字串的 fromindex 處或字串的結尾(沒有指定 fromindex 時)。如果找到一個 searchvalue,則返回 searchvalue 的第一個字元在 stringObject 中的位置。stringObject 中的字元位置是從 0 開始的。

二,提示和注釋

注釋:indexOf() 方法和 lastIndexOf() 方法都對大小寫敏感!

如果要檢索的字串值沒有出現,則該方法返回 -1。

執行個體1:

<html><body><script type="text/javascript">var str="Hello world!"document.write(str.indexOf("Hello") + "<br />")document.write(str.indexOf("World") + "<br />")document.write(str.indexOf("world"))</script></body></html>

效果如下:

 執行個體2:

<html><body><script type="text/javascript">var str="Hello world!"document.write(str.lastIndexOf("Hello") + "<br />")document.write(str.lastIndexOf("World") + "<br />")document.write(str.lastIndexOf("world"))</script></body></html>

效果如下:

 

(不知讀者是否會有疑問,為何二者的結果相同?在此囉嗦下,因為 lastIndexOf()方法雖然是從後往前搜尋,但返回的位置是從前開始數數和計算的,所以結果如上。)

 

轉載:http://www.cnblogs.com/iceflorence/p/5825286.html

2017-08-26 11:08:00

JavaScript indexOf() 方法和 lastIndexOf() 方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.