Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I have this single string, here I denote spaces (" ") with ^

^^quick^^^\n
^brown^^^\n
^^fox^^^^^\n

What regular expression to use to remove trailing spaces with .replace()? using replace(/\s+$/g, "") not really helpful since that only removes the spaces on the last line with "fox".

Going through other questions I found that replace(/\s+(?:$|\n)/g,"") matches the right sections but also gets rid of the new line characters but I do need them.

So the perfect result will be:

^^quick\n
^brown\n
^^fox\n

(only trailing spaces are removed everything else stays)

share|improve this question

1 Answer

up vote 1 down vote accepted

Add the 'm' multi-line modifier.

replace(/\s+$/gm, "")

Or faster still...

replace(/\s\s*$/gm, "")

Why is this faster? See: Faster JavaScript Trim

share|improve this answer
Mighty useful, thanks – Recc Apr 6 '11 at 15:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.