What is the Ruby function to remove all white space? Kinda like php's trim()?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you want to remove only leading and trailing whitespace (like PHP's trim) you can use |
|||||||||||||||||||||
|
And to emulate PHP's
|
|||||||||||||||
|
|
Related answer:
returns
|
|||||||
|
|
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:
|
|||||||
|
|
Also don't forget:
|
|||
|
|
|
Ruby's To remove all whitespace:
|
|||
|
|

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:36str.gsub!(/\s+/, "")– user1158559 Dec 12 '12 at 14:52