Trimming a String at the Beginning

In this case, we trim the string at the beginning using the trimLeft() function. 

JavaScript trimLeft() Function: This method is used to eliminate white space at the beginning of a string. The string’s value is not changed in any way, if any white space is present after the string, it’s not modified.

Syntax:

string.trimLeft();

Example 1: In this example, a variable var is declared with the string ” w3wiki”. Notice the given string that has whitespace at the left end. The trimLeft() function will remove the whitespace at the beginning.

Javascript




const word = " w3wiki";
console.log("Initial String:" + "'" + word + "'");
 
// Trimming the string at the Beginning
let new_word = word.trimLeft();
console.log("Modified String:" + "'" + new_word + "'");


Output

Initial String:' w3wiki'
Modified String:'w3wiki'

Example 2: In this example, a variable var is declared with the string ” w3wiki “. Notice the given string that has whitespace at both ends. trimLeft() will only remove the whitespace at the beginning and leaves the whitespace at the end unchanged.

Javascript




const word = "  w3wiki  ";
console.log("Initial String:" + "'" + word + "'");
 
// Trimming the string at the start
let new_word = word.trimLeft();
console.log("Modified String:" + "'" + new_word + "'");


Output

Initial String:'  w3wiki  '
Modified String:'w3wiki  '

How to trim a string at beginning or ending in JavaScript ?

This article demonstrates how to trim a string at the beginning, end, and also from both sides. For various sorts of string trimming, JavaScript provides three functions.

  • TrimLeft() function is used to remove characters from the beginning of a string.
  • TrimRight() function is used to remove characters from the end of a string.
  • Trim() function is used to remove characters from both ends.

JavaScript’s native functions, like those of many other languages, solely remove whitespace characters. We will discuss all these functions in detail, & understand them through examples.

These are the types of trimming the string:

Table of Content

  • Trimming a String at the Beginning
  • Trimming the String at the End
  • Trimming the string from both the ends

Similar Reads

Trimming a String at the Beginning

In this case, we trim the string at the beginning using the trimLeft() function....

Trimming the String at the End

...

Trimming the string from both the ends

...

Contact Us