JavaScript中的lastIndexOf()方法使用详解

时间:2021-05-26

此方法调用String对象之内返回索引指定的值最后一次出现,开始搜索在的fromIndex或如果没有找到该值则返回-1。
语法

string.lastIndexOf(searchValue[, fromIndex])

下面是参数的详细信息:

  • searchValue : 一个字符串,表示要搜索的值
  • fromIndex : 在调用字符串内的位置,从开始搜索。它是介于0-字符串的长度任意整数。缺省值是0。

返回值:

返回最后出现的索引,如果没有找到则为-1
例子:

<html><head><title>JavaScript String lastIndexOf() Method</title></head><body><script type="text/javascript">var str1 = new String( "This is string one and again string" );var index = str1.lastIndexOf( "string" );document.write("lastIndexOf found String :" + index ); document.write("<br />");var index = str1.lastIndexOf( "one" );document.write("lastIndexOf found String :" + index ); </script></body></html>

这将产生以下结果:

lastIndexOf found String :29lastIndexOf found String :15

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章