Skip to content

Instantly share code, notes, and snippets.

@hogihung
Created March 27, 2014 15:45
Show Gist options
  • Save hogihung/9810548 to your computer and use it in GitHub Desktop.
Save hogihung/9810548 to your computer and use it in GitHub Desktop.
Bloc Exercise - Title Case
class String
def title_case
articles = ["of", "and", "the", "a"]
s = self.downcase
a = s.split(' ')
a.each do |i|
i.capitalize! unless articles.include? i
end
a.first.capitalize!
a.join(" ")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment