Skip to content

Instantly share code, notes, and snippets.

@masonfmatthews
Created February 10, 2015 14:40
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 masonfmatthews/5ba0dd9e330605c0d9ac to your computer and use it in GitHub Desktop.
Save masonfmatthews/5ba0dd9e330605c0d9ac to your computer and use it in GitHub Desktop.
string quiz
def first_name(name)
return "" unless name
array = name.split
if array.count < 2
""
else
array[0..-2].join(" ")
end
end
def last_name(name)
return "" if name.nil?
name.split.last || ""
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment