Question – How to remove extra spaces from a string using JavaScript?

Advertisement

A space (” “) character is used to separate two words. Some times we get the extra spaces in a string, which may case issues with your application.

JavaScript trim() function is used for removing leading (before) and trailing (after) spaces from a string. This tutorial will help you to remove extra spaces from a string using JavaScript function.

Remove Spaces with JavaScript trim() Function

For the example, assign a string with spaces to a variable. Then use JavaScript trim() function to remove leading and trailing spaces from the string.

Output:

Welcome to TecAdmin.net!

JavaScript Remove Spaces Anywhere in String

You can remove all spaces from a string with combination of JavaScript split() and join() functions. Here we will split the string with space characters as delimiter. The again join the all parts of string without any space.

You can also run both functions in single line.

Output:

WelcometoTecAdmin.net

Using Left or Right Trim in JavaScript

Some of the older browsers may not support JavaScript trim() function. In that case, we can use the replace() method to remove trailing and preceding white spaces from any string.

  • Trim Space Both Side:
  • Trim Spaces Left Side:
  • Trim Spaces Right Side:

Conclusion

This tutorial described you to remove extra spaces from a string using JavaScript. Additionally, provides you instructions to remove all spaces from a string.

Share.

1 Comment

Leave A Reply

Exit mobile version