• slice、substring、substr的区别


    首先,他们一般都接收两个参数,slice和substring接收的是起始位置和结束位置(不包括结束位置),而substr接收的则是起始位置和所要返回的字符串长度。直接看下面例子:

     var test = 'hello world';
     alert(test.slice(4,7));             //o w
     alert(test.substring(4,7));         //o w
     alert(test.substr(4,7));            //o world

    如果只传一个个参数,那么截取这个参数后面的:

     var test = 'hello world';
     alert(test.slice(4));             //o world
     alert(test.substring(4));         //o world
     alert(test.substr(4));            //o world

    这里有个需要注意的地方就是:substring是以两个参数中较小一个作为起始位置,较大的参数作为结束位置。

    如:

    alert(test.substring(7,4));          //o w

    当接收的参数是负数时,slice会将它字符串的长度与对应的负数相加,结果作为参数;substr则仅仅是将第一个参数与字符串长度相加后的结果作为第一个参数;substring则干脆将负参数都直接转换为0。测试代码如下:

    var test = 'hello world';
    
        alert(test.slice(-3));         //rld
        alert(test.substring(-3));     //hello world
        alert(test.substr(-3));        //rld
        alert(test.slice(3,-4));       //lo w
        alert(test.substring(3,-4));   //hel
        alert(test.substr(3,-4));      //空字符串
  • 相关阅读:
    2dsphere索引
    geoNear查询 near查询的升级版
    geoWithin查询 多边形查询
    [TJOI2013]最长上升子序列
    「bzoj3956: Count」
    「bzoj3687: 简单题」
    「SDOI2008沙拉公主的困惑」
    郑州Day6
    「Luogu-U18201」分析矿洞
    【[COCI2011-2012#5] POPLOCAVANJE】
  • 原文地址:https://www.cnblogs.com/leiyangs/p/7967620.html
Copyright © 2020-2023  润新知