javascript中substr,substring,slice.splice的区别说明


Posted in Javascript onNovember 25, 2010

substr() 方法可在字符串中抽取从 start 下标开始的指定数目的字符.

stringObject.substr(start,length);start必须,length可选.

start 是截取的开始位置的下标,从0开始算起,必须是数字.可以是负数,-1是倒数第一个字符,-2是倒数第二个字符,以此类推.

length 是要截取的字符的长度,必须是数字.如果未指定,则从start位置处开始截取到字符串结尾.

substr 指定的是字符串的开始下标跟截取长度,所以可以替代substring跟slice使用.

重要事项:ECMAscript 没有对该方法进行标准化,因此反对使用它。

substring() 方法用于提取字符串中介于两个指定下标之间的字符。

stringObject.substring(start,end);start必须,end可选.

start 是截取的开始位置的下标,从0开始算起,必须是非负数字.(w3c说必须是非负整数,试验了下,不是整数也可以.)

end 必须是数字.如果未指定,则从start位置处开始截取到字符串结尾.

注意事项:substring截取的字符不包括end处的字符.所以截取的长度为end-start.

               start=end的话,返回空字符串,长度为0.

重要事项:substring不接收负的参数,slice和substr可以.

slice() 方法可提取字符串的某个部分,并以新的字符串返回被提取的部分。

stringObject.slice(start,end);start必须,end可选.

start 要抽取的片断的起始下标。如果是负数,则该参数规定的是从字符串的尾部开始算起的位置。也就是说,-1 指字符串的最后一个字符,-2 指倒数第二个字符,以此类推。

end 紧接着要抽取的片段的结尾的下标。若未指定此参数,则要提取的子串包括 start 到原字符串结尾的字符串。如果该参数是负数,那么它规定的是从字符串的尾部开始算起的位置。

splice() 方法用于插入、删除或替换数组的元素。

arrayObject.splice(index,howmany,element1,.....,elementX)index,howmany必须,其他可选.

index 规定从何处添加/删除元素。该参数是开始插入和(或)删除的数组元素的下标,必须是数字。

 

howmany 规定应该删除多少元素。必须是数字,但可以是 "0"。如果未规定此参数,则删除从 index 开始到原数组结尾的所有元素。

element1 规定要添加到数组的新元素。从 index 所指的下标处开始插入。

elementx 可向数组添加若干元素。

注释:请注意,splice() 方法与 slice() 方法的作用是不同的,splice() 方法会直接对数组进行修改。

所有提示:某些情况下,负数的参数不识别.所以尽量不要用负数作参数.免得浏览器不兼容,造成程序的出错.

 

这是JavaScript 权威指南上的说明,象我这种E文很烂的就能勉强看懂一下,并没有对着翻译,只是按照理解说明了下。


string.substring(from, to)

Arguments

from

A nonnegative integer that specifies the position within string of the first character of the desired substring.

       指定想要得到字符串的开始位置,即索引(非负整数)

to

A nonnegative optional integer that is one greater than the position of the last character of the desired substring. If this argument is omitted, the returned substring runs to the end of the string.

       指定想要得到字符串的结束位置,不包括该位置的字符(非负整数,可选,没有指定则返回从指定开始位置到原字符串结束位置)


string.slice(start, end)

Arguments

start

The string index where the slice is to begin. If negative, this argument specifies a position measured from the end of the string. That is, -1 indicates the last character, -2 indicates the second from last character, and so on.

        指定想要得到字符串的开始的位置,即索引。

end

The string index immediately after the end of the slice. If not specified, the slice includes all characters from start to the end of the string. If this argument is negative, it specifies a position measured from the end of the string.

        指定想要得到字符串的结束位置,不包括该位置的字符(可选,没有指定则返回从指定开始位置到原字符串结束位置)


string.substr(start, length)

Arguments

start

The start position of the substring. If this argument is negative, it specifies a position measured from the end of the string: -1 specifies the last character, -2 specifies the second-to-last character, and so on.

        指定想要得到字符串的开始的位置,即索引。

length

The number of characters in the substring. If this argument is omitted, the returned substring includes all characters from the starting position to the end of the string.

        指定想要得到字符串的长度,(可选,没有指定则返回从指定开始位置到原字符串结束位置)


PS:这三个方法均返回截取原字符串的一部分新字符串,第2个参数均为可选参数,并且其实所有的参数均可以为负整数。

string.substring(from, to)
string.slice(start, end)

这两个方法差不多,都是指定开始和结束位置返回新字符串,在参数均为正整数的时候返回结果一样,当参数为负整数的时候,string.substring(from, to) 把负整数都当作0处理,而 string.slice(start, end) 将把负整数加上该字符串的长度处理。

string.substr(start, length)

这个方法只在第二个参数上指定的是新字符串的长度,对于负正数和string.slice(start, end)处理一样,把负整数加上原字符串的长度。
Example

var s = "abcdefg"; s.substring(1,4) // Returns "bcd" 
s.slice(1,4) // Returns "bcd" 
s.substr(1,4) // Returns "bcde" 
s.substring(2,-3) // Returns "ab" 实际上是 s.substring(0,2) 较小的参数会在前面 
s.slice(2,-3) // Returns "cd" 实际上是 s.slice(2,4) 
s.substr(2,-3) // Returns "cdef" 实际上是 s.slice(2,4)
Javascript 相关文章推荐
ie支持function.bind()方法实现代码
Dec 27 Javascript
Jquery带搜索框的下拉菜单
May 06 Javascript
JS操作数据库的实例代码
Oct 17 Javascript
js 弹出框只弹一次(二次修改之后的)
Nov 26 Javascript
JavaScript实现倒计时代码段Item1(非常实用)
Nov 03 Javascript
Vue.js绑定HTML class数组语法错误的原因分析
Oct 19 Javascript
前端防止用户重复提交js实现代码示例
Sep 07 Javascript
vue element upload实现图片本地预览
Aug 20 Javascript
JS开发自己的类库实例分析
Aug 28 Javascript
vue项目中自定义video视频控制条的实现代码
Apr 26 Javascript
JavaScript常用进制转换及位运算实例解析
Oct 14 Javascript
React列表栏及购物车组件使用详解
Jun 28 Javascript
JavaScript中的类继承
Nov 25 #Javascript
js getBoundingClientRect() 来获取页面元素的位置
Nov 25 #Javascript
腾讯的ip接口 方便获取当前用户的ip地理位置
Nov 25 #Javascript
js删除所有的cookie的代码
Nov 25 #Javascript
javascript 广告后加载,加载完页面再加载广告
Nov 25 #Javascript
js页面跳转常用的几种方式
Nov 25 #Javascript
简略的前端架构心得&&基于editor为例子的编码小技巧
Nov 25 #Javascript
You might like
浅谈PHP正则表达式中修饰符/i, /is, /s, /isU
2014/10/21 PHP
PHP实现简单实用的验证码类
2015/07/29 PHP
php编程中echo用逗号和用点号连接的区别
2016/03/26 PHP
php简单获取复选框值的方法
2016/05/11 PHP
php闭包中使用use声明变量的作用域实例分析
2018/08/09 PHP
使用Apache的rewrite
2021/03/09 Servers
setTimeout的延时为0时多个浏览器的区别
2012/05/23 Javascript
jquery实现tr元素的上下移动示例代码
2013/12/20 Javascript
JS取request值以及自动执行使用示例
2014/02/24 Javascript
jQuery实现选中弹出窗口选择框内容后赋值给文本框的方法
2015/11/23 Javascript
创建基于Bootstrap的下拉菜单的DropDownList的JQuery插件
2016/06/02 Javascript
AngularJS入门教程之多视图切换用法示例
2016/11/02 Javascript
BootStrap table使用方法分析
2016/11/08 Javascript
JS解析url查询参数的简单代码
2017/08/06 Javascript
移动端触摸滑动插件swiper使用方法详解
2017/08/11 Javascript
详解微信小程序实现WebSocket心跳重连
2018/07/31 Javascript
微信小程序使用component自定义toast弹窗效果
2018/11/27 Javascript
浅谈JavaScript闭包
2019/04/09 Javascript
一篇文章介绍redux、react-redux、redux-saga总结
2019/05/23 Javascript
Python的lambda匿名函数的简单介绍
2013/04/25 Python
在Python中使用M2Crypto模块实现AES加密的教程
2015/04/08 Python
python 调用HBase的简单实例
2016/12/18 Python
python自定义异常实例详解
2017/07/11 Python
用Python shell简化开发
2018/08/08 Python
Python + Flask 实现简单的验证码系统
2019/10/01 Python
django框架使用views.py的函数对表进行增删改查内容操作详解【models.py中表的创建、views.py中函数的使用,基于对象的跨表查询】
2019/12/12 Python
python--shutil移动文件到另一个路径的操作
2020/07/13 Python
Python调用ffmpeg开源视频处理库,批量处理视频
2020/11/16 Python
django使用多个数据库的方法实例
2021/03/04 Python
法国时尚童装网站:Melijoe
2016/08/10 全球购物
奢华时尚的独特视角:La Garçonne
2018/06/07 全球购物
财务会计大学生自我评价
2014/04/09 职场文书
三八红旗集体先进事迹材料
2014/05/22 职场文书
聘任通知书
2015/09/21 职场文书
靠谱的活动总结
2019/04/16 职场文书
MySQL的安装与配置详细教程
2021/06/26 MySQL