Microsoft® JScript slice Method (String) |
Language Reference Version 3 |
Returns a section of a string.
stringObj.slice(start, [end])The slice method syntax has these parts:
Part Description stringObj Required. A String object or literal. start Required. The zero-based index of the beginning of the specified portion of stringObj. end Optional. The zero-based index of the end of the specified portion of stringObj. .
The slice method returns a String object containing the specified portion of stringObj.If negative, end indicates an offset from the end of stringObj. In addition, it is not zero-based. If omitted, extraction continues to the end of stringObj.
In the example that follows, the two uses of the slice method return the same thing. Negative one in the second example points to the last character in str1 as the ending point:
str1.slice(0) str2.slice(0,-1)
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/language/jscript/js833.htm, 3KB, , updated: 1997/9/30 02:45, local time: 2024/11/12 12:46,
3.135.206.98:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.org/Techref/language/jscript/js833.htm"> slice Method (String)</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to massmind.org! |
.