Ruby function to remove all white spaces?

ruby, string

Solution

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 .

Problem

What is the Ruby function to remove all white spaces? I'm looking for something kind of like PHP's `trim()`?

Original source

Related problems