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 .
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 .