JavaScript lastIndexOf() 方法
實例
查找字符串 "planet" 最后出現(xiàn)的位置:
var str="Hello planet earth, you are a great planet.";
var n=str.lastIndexOf("planet");
var n=str.lastIndexOf("planet");
n 輸出結(jié)果:
var str="Hello planet earth, you are a great planet.";
document.write(str.lastIndexOf("planet"));
嘗試一下 ?
定義和用法
lastIndexOf() 方法可返回一個指定的字符串值最后出現(xiàn)的位置,在一個字符串中的指定位置從后向前搜索。
注意: 該方法將從尾到頭地檢索字符串 string Object,看它是否含有子串 searchvalue。開始檢索的位置在字符串的 fromindex 處或字符串的結(jié)尾(沒有指定 fromindex 時)。如果找到一個 searchvalue,則返回 searchvalue 的第一個字符在 stringObject 中的位置。stringObject 中的字符位置是從 0 開始的。
如果沒有找到匹配字符串則返回 -1 。
注意: The lastIndexOf() method is case sensitive!
提示: 你也可以參照類似方法 indexOf() 。
瀏覽器支持
所有主要瀏覽器都支持 lastIndexOf() 方法
語法
string.lastIndexOf(searchvalue,start)
參數(shù)值
參數(shù) | 描述 |
---|---|
searchvalue | 必需。規(guī)定需檢索的字符串值。 |
start | 可選的整數(shù)參數(shù)。規(guī)定在字符串中開始檢索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略該參數(shù),則將從字符串的最后一個字符處開始檢索。 |
返回值
類型 | 描述 |
---|---|
Number | 查找的字符串最后出現(xiàn)的位置,如果沒有找到匹配字符串則返回 -1。 |
技術(shù)細節(jié)
JavaScript 版本: | 1.0 |
---|
更多實例
實例
從第20個字符開始查找字符串 "planet" 最后出現(xiàn)的位置,:
var str="Hello planet earth, you are a great planet.";
var n=str.lastIndexOf("planet",20);
var n=str.lastIndexOf("planet",20);
n 輸出結(jié)果:
var str="Hello planet earth, you are a great planet.";
document.write(str.lastIndexOf("planet",20));
嘗試一下 ?
更多建議: