Skip to content

Instantly share code, notes, and snippets.

@ahmedissa
Created June 18, 2014 22:27
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 ahmedissa/4855bdcd03c6fc85a98b to your computer and use it in GitHub Desktop.
Save ahmedissa/4855bdcd03c6fc85a98b to your computer and use it in GitHub Desktop.
string = "How are you ? "
string = string + " " unless string[string.length-1] == " "
array = []
temp = ""
for x in (0...string.length)
if string[x] != ' '
temp += string[x]
else
array << temp unless temp == ''
temp = ""
end
end
p array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment