Thursday, November 13, 2025
HomeLanguagesJavascriptTypeScript | String substr() Method

TypeScript | String substr() Method

The split() is an inbuilt function in TypeScript which is used to returns the characters in a string beginning at the specified location through the specified number of characters.

Syntax: 

string.substr(start[, length])

Parameter: This method accepts two parameter as mentioned above and described below.: 

  • start – This parameter is the location at which to start extracting characters.
  • length – This parameter is the number of characters to extract.

Return Value: This method returns the new sub-string. 
Below examples illustrate the String substr() method in TypeScript.

Example 1: 

Javascript




<script>
    // Original strings
    var str = "Geeksforneveropen - Best Platform"
  
    // use of String substr() Method
    var newstr = str.substr(0,5) 
  
    console.log(newstr);
</script>


Output: 

Geeks

Example 2: 

JavaScript




<script>
    // Original strings
    var str = "Geeksforneveropen - Best Platform"
  
    // use of String substr() Method
    var newstr = str.substr(0,5) 
    console.log(newstr);
  
    newstr = str.substr(-2,5) 
    console.log(newstr);
  
    newstr = str.substr(12,22) 
    console.log(newstr);
  
    newstr = str.substr(0,1) 
    console.log(newstr);
</script>


Output: 

Geeks
rm
s - Best Platform
G
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11916 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11983 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6835 POSTS0 COMMENTS
Umr Jansen
6838 POSTS0 COMMENTS