Languages
[Edit]
EN

JavaScript - remove last 2 characters from string

0 points
Created by:
telsa
502

In this article, we're going to have a look at how to remove the last 2 characters from the string in JavaScript.

1. String slice() method example

This approach allows getting substring by using negative indexes. So by using 0 and -2 indexes as the range we get <0, text.length - 2> text range. 

// ONLINE-RUNNER:browser;

var text = 'abcde';
var substring = text.slice(0, -2);

console.log(substring); // abc

2. String substring() method example

This is an alternative approach to slice method based solution.

// ONLINE-RUNNER:browser;

var text = 'abcde';
var substring = text.substring(0, text.length - 2);

console.log(substring); // abc

3. String replace() method example

There is another trick that allows replacing all characters that match expression conditions. By using .{0,2}$ pattern we match any 2 characters (up to 2 characters) that are located at the end of the string.

// ONLINE-RUNNER:browser;

var text = 'abcde';
var substring = text.replace(/.{0,2}$/, '');

console.log(substring); // abc
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - remove last 2 characters from string

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

â€ïžđŸ’» 🙂

Join