Home » JavaScript String substr() Method

JavaScript String substr() Method

by Online Tutorials Library

JavaScript String substr() Method

The JavaScript string substr() method fetch the part of the given string and return the new string. The number of characters to be fetched depends upon the length provided with the method. This method doesn’t make any change in the original string.

Syntax

The substr() method is represented by the following syntax:

Parameter

start – It represents the position of the string from where the fetching starts.

length – It is optional. It represents the number of characters to fetch.

Return

Part of the string.

JavaScript String substr() Method Example

Let’s see some simple examples of substr() method.

Example 1

Let’s see a simple example to print the part of the string.

Test it Now

Output:

Java  

Example 2

Let’s see one more example to print the part of the string.

Test it Now

Output:

point  

Example 3

In this example, we will provide only the starting index.

Test it Now

Output:

point  

Example 4

In this example, we will not pass any parameter with the method. In such case, the method returns the complete string.

Test it Now

Output:

Tutoraspire  

Example 5

In this example, we will provide negative number as a starting index. In such case, the method starts fetching from the end of the string.

Test it Now

Output:

point  

Next TopicJavaScript String

You may also like