Section 24.175. String.substr( ): extract a substring


24.175. String.substr( ): extract a substring

JavaScript 1.2; deprecated

24.175.1. Synopsis

string.substr(start, length)

24.175.1.1. 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.

24.175.1.2. Returns

A copy of the portion of string starting at and including the character specified by start and continuing for length characters, or to the end of the string if length is not specified.

24.175.2. Description

substr( ) extracts and returns a substring of string. It does not modify string.

Note that substr( ) specifies the desired substring with a character position and a length. This provides a useful alternative to String.substring( ) and String.splice( ), which specify a substring with two character positions. Note, however, that this method has not been standardized by ECMAScript and is therefore deprecated.

24.175.3. Example

 var s = "abcdefg"; s.substr(2,2);   // Returns "cd" s.substr(3);     // Returns "defg" s.substr(-3,2);  // Should return "ef"; returns "ab" in IE 4 

24.175.4. Bugs

Negative values for start do not work in IE 4 (this is fixed in later versions of IE). Instead of specifying a character position measured from the end of the string, they specify character position 0.

24.175.5. See Also

 String.slice( ), String.substring( ) 




JavaScript. The Definitive Guide
JavaScript: The Definitive Guide
ISBN: 0596101996
EAN: 2147483647
Year: 2004
Pages: 767

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net