Ruby function to remove all white spaces?

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

24 s
24

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 .

Leave a Comment