slice Method (String) (JavaScript)
Returns a section of a string.
stringObj.slice(start, [end])
The slice method returns a String object containing the specified portion of stringObj.
The slice method copies up to, but not including, the character indicated by end.
If start is negative, it is treated as length + start where length is the length of the string. If end is negative, it is treated as length + end. If end is omitted, copying continues to the end of stringObj. If end occurs before start, no characters are copied to the new string.
In the first example, the slice method returns the entire string. In the second example, the slice method returns the entire string, except for the last character.
var str1 = "all good boys do fine"; var slice1 = str1.slice(0); var slice2 = str1.slice(0,-1); var slice3 = str1.slice(4); var slice4 = str1.slice(4, 8); document.write(slice1 + "<br/>"); document.write(slice2 + "<br/>"); document.write(slice3 + "<br/>"); document.write(slice4); // Output: // all good boys do fine // all good boys do fin // good boys do fine // good
Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards. Also supported in Windows Store apps. See Version Information.
Applies To: String Object (JavaScript)
