Skip to content

Instantly share code, notes, and snippets.

@ysnerdem
Last active March 15, 2018 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ysnerdem/ce68442cda9f5c5b995ce2bb3434378c to your computer and use it in GitHub Desktop.
Save ysnerdem/ce68442cda9f5c5b995ce2bb3434378c to your computer and use it in GitHub Desktop.
RemoveSpacesFromString
def remove_spaces(str)
result = ""
str.each_char {|letter| result << letter if letter != " "}
result
end
#Alternative
def remove_spaces_v2(str)
str.delete! ' '
str
end
puts "Enter a string"
str = gets
remove_spaces(str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment