JavaScript String substring() Method

In string manipulation, we need string functions, substring() is one of the main function which is mostly used in javascript.

Syntax

Parameters

start Required. The position where to start the extraction. First character is at index 0
end Optional. The position (up to, but not including) where to end the extraction. If omitted, it extracts the rest of the string

Output : Returns a new String containing the extracted characters.

Example :

Example :

Example :

Example :

Usage:
The substring() method extracts the characters from a string, between two specified indices, and returns the new sub string.
This method extracts the characters in a string between “start” and “end”, not including “end” itself.
If “start” is greater than “end”, this method will swap the two arguments, meaning str.substring(1,4) == str.substring(4,1).
If either “start” or “stop” is less than 0, it is treated as if it were 0.
Note: The substring() method does not change the original string.

You Might Interested In

Leave a Reply

Enclose a code block like: <pre><code>Your Code Snippet</code></pre>.