Ask Your Question
2

What is the method to eliminate unnecessary white spaces in a string, while retaining symbols like '\n'?

asked 2021-09-14 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-03-31 12:00:00 +0000

ladyg gravatar image

The method to eliminate unnecessary white spaces in a string, while retaining symbols like '\n', is to use regular expressions. The following regular expression pattern can be used to match any sequence of consecutive whitespace characters (spaces, tabs, etc.) except for newline characters:

/ +(?=[^\n])/g

Then, the replace() method can be used to replace all matches of this pattern with a single space character:

const str = "Hello,\n   world!";
const trimmedStr = str.replace(/ +(?=[^\n])/g, " ");

console.log(trimmedStr); // "Hello,\n world!"

In this example, the original string contained three consecutive spaces before the word "world". These spaces were replaced with a single space, leaving the newline character intact.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-09-14 11:00:00 +0000

Seen: 1 times

Last updated: Mar 31 '22