js_str.indexOf().lastIndexOf().html

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>js_str.indexOf().lastIndexOf()</title>
</head>
<body>

<script>
    /*参考:
        https://www.runoob.com/jsref/jsref-indexof.html
        https://www.runoob.com/jsref/jsref-lastindexof.html
    * 知识点:
        1.string.indexOf(searchValue,start) -> searchValue 第一次出现的位置 / 没找到匹配的字符串,则返回 -1 (number)。
            从前往后。
            searchValue,必需。待检索的字符串。
            start,可选的整数。规定在字符串中开始检索的位置。
                它的合法取值是 0 到 string Object.length - 1。
                如省略该参数,则将从字符串的首字符开始检索。
        2.string.lastIndexOf(searchValue,start) -> searchValue 最后出现的位置 / 没找到匹配的字符串,则返回 -1。
            从后往前。
            searchValue,必需。待检索的字符串。
            start,可选的整数。规定在字符串中开始检索的位置。
            它的合法取值是 0 到 stringObject.length - 1。
            如省略该参数,则将从字符串的最后一个字符处开始检索。
    * */
    // 1.string.indexOf()
    let str = "你好,我好,大家好!";
    let i = str.indexOf("好");
    console.log(i);  // 1
    i = str.indexOf("好", 2);
    console.log(i);  // 4
    console.log(str.indexOf("们"));  // -1

    // 2.string.lastIndexOf()
    console.log("\n2.");
    i = str.lastIndexOf("好", 5);
    console.log(i);  // 4
    i = str.lastIndexOf("好");
    console.log(i);  // 8
    i = str.lastIndexOf("它");
    console.log(i);  // -1

    // 3.
    console.log("\n3.");
    console.log(str.length);  // 10
    console.log(str[str.length - 1]);  // !
    console.log(str[str.length]);  // undefined
    console.log(typeof str[str.length]);  // undefined
    console.log(str[str.length] == "undefined");  // false
    console.log(typeof str[str.length] === "undefined");  // true
</script>

</body>
</html>





  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值