How to remove whitespace from a string in typescript?

Talk is Cheap Show me Code picture Talk is Cheap Show me Code · Mar 7, 2018 · Viewed 107.5k times · Source

In my angular 5 project, with typescript I am using the .trim() function on a string like this, But it is not removing the whitespace and also not giving any error.

this.maintabinfo = this.inner_view_data.trim().toLowerCase();
// inner_view_data has this value = "Stone setting"

https://www.typescriptlang.org/docs/handbook/release-notes/typescript-1-4.html This docs clearly say that .trim() is part of the typescript.

What is best way to remove whitespace in from a string in typescript?

Answer

Hrishikesh Kale picture Hrishikesh Kale · Mar 7, 2018

Problem

The trim() method removes whitespace from both sides of a string.

Source

Solution

You can use a Javascript replace method to remove white space like

"hello world".replace(/\s/g, "");

Example

var out = "hello world".replace(/\s/g, "");
console.log(out);