美文网首页
js 查找字符串中是否包含指定的字符串

js 查找字符串中是否包含指定的字符串

作者: 陶菇凉 | 来源:发表于2021-01-12 15:21 被阅读0次
    1、indexOf()
    var str = "123";
    console.log(str.indexOf("3") != -1 ); // true
    

    indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。如果要检索的字符串值没有找到,则该方法返回 -1。

    2、includes()
    var str = "Hello world, welcome to the Runoob。";
    var n = str.includes("world"); //true
    

    includes() 方法用于判断字符串是否包含指定的子字符串,如果找到匹配的字符串则返回 true,否则返回 false。注意: includes() 方法区分大小写。

    3、search()
    var str="Visit W3School!"
    console.log(str.search(/W3School/)) //6
    var str="Visit W3School!"
    console.log(str.search('W3School')) //6
    

    search() 方法用于检索字符串中指定的子字符串,或检索与正则表达式相匹配的子字符串。如果匹配到字符串则返回,字符串所在索引。

    4、match()
    var str="The rain in SPAIN stays mainly in the plain";
    var n=str.match(/ain/g); // ain,ain,ain
    

    match() 方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。注意: includes() 方法不区分大小写。

    5、test()
    if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
        console.log("移动")
    } else {
        console.log("PC")
    }
     
    var str="Hello world!";
    //查找"Hello"
    var patt=/Hello/g;
    var result=patt.test(str);
    console.log(result) // true
    

    test() 方法用于检测一个字符串是否匹配某个模式。如果字符串中有匹配的值返回 true ,否则返回 false。

    6、exec()
    var str="Hello world!";
    //查找"Hello"
    var patt=/Hello/g;
    var result=patt.exec(str);
    console.log(result) // Hello
    

    exec() 方法用于检索字符串中的正则表达式的匹配。如果字符串中有匹配的值返回该匹配值,否则返回 null。

    7.正则匹配查找字符串位置
    var str1 = "abctestctesqk1test23";
    var str2 = "test";
    function countSubstr(str, substr) {
      var reg = new RegExp(substr, "g");
      return str.match(reg) ? str.match(reg).length : 0;
      //若match返回不为null,则结果为true,输出match返回的数组(["test","test"])的长度
    }
    console.log(countSubstr(str1, str2));//输出2
    

    相关文章

      网友评论

          本文标题:js 查找字符串中是否包含指定的字符串

          本文链接:https://www.haomeiwen.com/subject/qofeaktx.html