AvailabilityJavaScript 1.2; JScript 3.0; deprecated Synopsisstring.substr(start, length) Arguments
ReturnsA 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. Descriptionsubstr( ) 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. Examplevar 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 BugsNegative values for start do not work in JScript 3.0 (IE 4). Instead of specifying a character position measured from the end of the string, they specify character position 0. See AlsoString.slice( ), String.substring( ) |