Files
til/ruby/squeeze-out-the-extra-space.md
T

172 B

Squeeze Out The Extra Space

Remove all the excess spaces from a string using the squeeze method:

> "this  is   a string".squeeze(' ')
=> "this is a string"