1. 程式人生 > >String物件,indexof和lastindexof查詢字串位置

String物件,indexof和lastindexof查詢字串位置

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>

</body>
<script>
    //普通建立字串方式, 但是我們可以把它當做字串物件來看待
    var str = "abcdefghijklmn";

    //建立一個字串物件
    var obj_str = new String("ABCDEFGHIDJKLMND");


    console.log(obj_str);

    //   返回子字串在字串物件中第一次出現的位置(從0開始計算),不存在返回-1   能查詢到的情況
    var l = obj_str.indexOf("D");
    console.log(l);

    console.log(obj_str.lastIndexOf("D"));//indexof和lastindexof區別在於有相同字串的話會找相同字串的最後一位。
//
//    //普通建立方式可以當做物件去使用
//    var s = str.indexOf("d");
//    console.log(s);












</script>

</html>