Yogesh Chauhan's Blog

The substr() method in JavaScript and how it’s different from substring()

in JavaScript on March 4, 2021

We saw a few examples for substring() in this post.

Let’s understand how substr() works.

substr() method in JavaScript

Syntax


string.substr(from, numberOfCharacters)

Things to remember

  1. The from argument is the position you want to start the substring from and numberOfCharacters argument is the total number of characters you want to take out.
  2. from is required and numberOfCharacters is optional. If you don’t specify numberOfCharacters then it will give you the rest of the string in return from the specified starting index.
  3. First character starts at zero and if we specify from greater or equal to the number of characters in the string then it will return an empty string.
  4. If from is negative then it will use it as an index from the end of the string.

Examples

Get first 6 characters from a string using substr()


var str = "YogeshChauhan.com";
var sub = str.substr(0,6);
console.log(sub);
//Yogesh

Get the rest of the string skipping the first 6 characters using substr()


var str = "YogeshChauhan.com";
var sub = str.substr(6);
console.log(sub);
//Chauhan.com

Get the first character from the string using substr()


var str = "YogeshChauhan.com";
var sub = str.substr(0,1);
console.log(sub);
//Y

Get the last character from the string using substr()


var str = "YogeshChauhan.com";
var sub = str.substr(str.length-1,1);
console.log(sub);
//m

The difference between substring() and substr()

The substr() method takes out parts of a string just like substring() does. The subtle difference is in the way it works and how it works.

substring() takes two arguments, start and end for the substring you want. substr() takes two arguments too and the first argument is the start of the substring as well. The only difference is the second argument we pass. In substr() we need to pass the number of characters we want in a substring.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
How to Pop an Alert Box in PHP?JavaScriptJavaScript: Methods for HTML DOM classList PropertyJavaScriptLIMIT and OFFSET in PostgresPostgresRecursive WITH Queries in Postgres (Common Table Expressions)PostgresHow to Block IPs and User Agents using code in Drupal or WordPress?DrupalWill SQL (Relational) Database become obsolete?SQL/MySQL