JavaScript
中的lastIndexOf()
方法返回给定字符串中指定字符或子字符串的最后一个匹配项的索引。如果找不到字符或子字符串,则返回-1。
lastIndexOf基本语法
str.lastIndexOf(searchValue[, fromIndex])
lastIndexOf示列用法
let str = "NIHAO WEB"; console.log(str.lastIndexOf("2")); // 输出 -1 console.log(str.lastIndexOf("2", 6)); // 输出 -1 console.log(str.lastIndexOf("W")); // 输出 6
javascript中lastindexof()方法的运用介绍
标签: lastIndexOf
上面是“lastIndexOf()方法的基本用法”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4847.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!