String.prototype.substr()
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The
substr()
method of
String
values returns a portion of this string, starting at the specified index and extending for a given number of characters afterwards.
Note:
substr()
is not part of the main ECMAScript specification — it's defined in
Annex B: Additional ECMAScript Features for Web Browsers
, which is normative optional for non-browser runtimes. Therefore, people are advised to use the standard
String.prototype.substring()
and
String.prototype.slice()
methods instead to make their code maximally cross-platform friendly. The
String.prototype.substring()
page
has some comparisons between the three methods.