--- title: String.prototype.slice() slug: Web/JavaScript/Reference/Global_Objects/String/slice tags: - JavaScript - Method - Prototype - String - 原型 - 字符串 - 方法 translation_of: Web/JavaScript/Reference/Global_Objects/String/slice ---
slice()
方法提取某个字符串的一部分,并返回一个新的字符串,且不会改动原字符串。
str.slice(beginIndex[, endIndex])
beginIndex
strLength + beginIndex
看待,这里的strLength
是字符串的长度(例如, 如果 beginIndex
是 -3 则看作是:strLength - 3
)endIndex
slice()
会一直提取到字符串末尾。如果该参数为负数,则被看作是 strLength + endIndex,这里的 strLength 就是字符串的长度(例如,如果 endIndex 是 -3,则是, strLength - 3)。返回一个从原字符串中提取出来的新字符串
slice()
从一个字符串中提取字符串并返回新字符串。在一个字符串中的改变不会影响另一个字符串。也就是说,slice
不会修改原字符串(只会返回一个包含了原字符串中部分字符的新字符串)。
slice()
提取的新字符串包括beginIndex
但不包括 endIndex
。下面有两个例子。
例 1:str.slice(1, 4)
提取第二个字符到第四个字符(被提取字符的索引值(index)依次为 1、2,和 3)。
例 2:str.slice(2, -1)
提取第三个字符到倒数第一个字符。
slice()
创建一个新的字符串下面例子使用 slice()
创建了一个新字符串。
var str1 = 'The morning is upon us.', // str1 的长度 length 是 23。 str2 = str1.slice(1, 8), str3 = str1.slice(4, -2), str4 = str1.slice(12), str5 = str1.slice(30); console.log(str2); // 输出:he morn console.log(str3); // 输出:morning is upon u console.log(str4); // 输出:is upon us. console.log(str5); // 输出:""
slice()
传入负值索引下面的例子在使用 slice()
时传入了负值作为索引。
var str = 'The morning is upon us.'; str.slice(-3); // 返回 'us.' str.slice(-3, -1); // 返回 'us' str.slice(0, -1); // 返回 'The morning is upon us'
规范 | 状态 | 备注 |
---|---|---|
{{SpecName('ESDraft', '#sec-string.prototype.slice', 'String.prototype.slice')}} | {{Spec2('ESDraft')}} | |
{{SpecName('ES6', '#sec-string.prototype.slice', 'String.prototype.slice')}} | {{Spec2('ES6')}} | |
{{SpecName('ES5.1', '#sec-15.5.4.13', 'String.prototype.slice')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES3')}} | {{Spec2('ES3')}} | Initial definition. Implemented in JavaScript 1.2. |
{{Compat("javascript.builtins.String.slice")}}