Yogesh Chauhan's Blog

How to remove trailing characters from a string using JavaScript?

in JavaScript on May 16, 2021

Removing one or more characters from a string is required when you append commas or spaces while joining bunch of strings.

There are multiple ways to remove the trailing characters from JavaScript.

using Substring() method

We can use the substring() method to extract characters from a string.

It takes two arguments, start and end for the substring you want. It does NOT include the end character.

This is how we can use substring() method to remove the trailing character(s):

Remove one character:


let blog = "YogeshChauhan.com,";
blog = blog.substring(0, blog.length - 1);
console.log(blog);

//YogeshChauhan.com

Remove multiple characters:


let blog = "YogeshChauhan.com, =";
blog = blog.substring(0, blog.length - 3);
console.log(blog);

//YogeshChauhan.com

using slice() method

We can use slice method to remove trailing characters from a string and the syntax is way cleaner.

Just like Array.from, slice method creates a copy of an array and returns it, basically taking an array as an argument and returning it with updated contents.

This is how we can remove last character from a string:


let blog = "YogeshChauhan.com,";
blog = blog.slice(0, -1); 
console.log(blog);

//YogeshChauhan.com

This is how we can remove multiple characters:


let blog = "YogeshChauhan.com, =";
blog = blog.slice(0, -3); 
console.log(blog);

//YogeshChauhan.com


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
Check If a String Contains a Specific Word in PHPPHPVariables and Distance Functions in SCSS (Sass)SCSSHow to Create a Backup From Any Database in SQL?SQL/MySQLHigher Order Functions in JavaScript with ExamplesJavaScriptFew more :nth-child examples in CSSCSSHow To Create a Fullscreen Background Video using CSS and JavaScript?CSS