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

What is the Ruby function to remove all white space? Kinda like php's trim()?

share|improve this question
5  
Your question is not clear: Do you want to remove all whitespace or do you want to get rid of leading and trailing whitespace? – Sinan Ünür Oct 28 '09 at 2:00
3  
PHP's trim() strips whitespace "from the beginning and end of a string" (as stated within documentation), it does not remove "all whitespaces". – Tadeck Jan 11 '12 at 8:36
12  
Please accept an answer. – Brett Holt Jul 12 '12 at 2:46
1  
Be careful what you wish for: str.gsub!(/\s+/, "") – user1158559 Dec 12 '12 at 14:52
When in doubt, look at the Ruby online documentation for the String class (see .strip below). – Merovech Mar 3 at 14:24

6 Answers

If you want to remove only leading and trailing whitespace (like PHP's trim) you can use .strip, but if you want to remove all whitespace, you can use .gsub(/\s+/, "") instead .

share|improve this answer
2  
This is the correct answer – jrhicks May 8 '10 at 23:19
1  
Does "/\s+/" simple mean whitespace? – Rails beginner Jul 13 '11 at 8:50
6  
\s+ means 1 or more whitespace characters (space, newline, tab). The // surrounding show that it's a regular expression. – dylanfm Jul 27 '11 at 12:26
2  
This is not equivalent to trim() – Brett Holt Jul 12 '12 at 2:47
3  
strip was exactly what i was looking for, thanks for good question and awnser! – Francois Jul 31 '12 at 16:10
show 2 more comments
s = "I have white space".delete(' ')

And to emulate PHP's trim() function:

s = "   I have leading and trailing white space   ".strip
share|improve this answer
this is much more readable than the regex, why is it not as popular? – ckarbass Aug 17 '12 at 3:27
18  
@ckarbass: Because many people prefer overly complex solutions to simple problems. It goes away with experience. – Ed S. Aug 17 '12 at 4:40
I think it is because many people are actually looking for strip. Even the one that only mentions strip is higher than this entry. – Jason Axelson Aug 18 '12 at 2:18
@JasonAxelson: You're riht about strip, it's a better alternative than what I posted (and I commented such and voted that response up... wow, almost three years ago now). The thing is, many people rush to use regular expressions when it's overkill. They do accomplish different things however. – Ed S. Aug 18 '12 at 2:25
9  
@ckarbass @Ed S. It isn't as popular because it isn't the same. The original question used the phrase "all whitespace", which includes tabs, newlines, etc. This proposed answer will not remove those other whitespace characters. As for "overly complex", I suggest comparing the simple regular expression to .delete(' ').delete('\t').delete('\n') ..., which is overly verbose and provides many opportunities for typos and errors of omission. – joel.neely Sep 8 '12 at 23:48
show 3 more comments

Related answer:

"   clean up my edges    ".strip

returns

"clean up my edges"
share|improve this answer
That's the one I forgot about. I knew there was a method to remove whitespace which would do so by default if no arguments were passed. +1 – Ed S. Oct 28 '09 at 1:56
This is equivalent to trim. Please refer to the quote from @Tadeck above. – Brett Holt Jul 12 '12 at 2:48
If there is a possibility that the variable is nil, be sure to run .to_s method before running strip so that the strip method does not raise an error. Ex. str=nil; str.to_s.strip #=> "" – scarver2 Oct 26 '12 at 20:15

It's a bit late, but anyone else googling this page might be interested in this version -

If you want to clean up a chunk of pre-formatted text that a user may have cut & pasted into your app somehow, but preserve the word spacing, try this:

content = "      a big nasty          chunk of     something

that's been pasted                        from a webpage       or something        and looks 

like      this

"

content.gsub(/\s+/, " ").strip

#=> "a big nasty chunk of something that's been pasted from a webpage or something and looks like this"
share|improve this answer
11  
One could also use Rails' squish method: apidock.com/rails/String/squish – Phillip Koebbe Apr 5 '12 at 20:52
Or if you don't have Rails, and you don't have newlines, squeeze(" ") might work. – Andrew Grimm Sep 4 '12 at 23:22

Also don't forget:

$ s = "   I have white space   ".split
=> ["I", "have", "white", "space"]
share|improve this answer
So s.split.join will do the job. – Piotr Brudny Jun 14 '12 at 7:59

Ruby's .strip method performs the PHP equivalent to trim().

To remove all whitespace:

"  leading    trailing   ".squeeze(' ').strip
=> "leading trailing"
share|improve this answer

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.