Ruby function to remove all white spaces?

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