Skip to content

Instantly share code, notes, and snippets.

@hyuki0000
Created February 27, 2016 09:51
Show Gist options
  • Save hyuki0000/0573fb57a51441983686 to your computer and use it in GitHub Desktop.
Save hyuki0000/0573fb57a51441983686 to your computer and use it in GitHub Desktop.
一瞬はまった。
def foo(id)
s = id.to_s
s.sub!(/^(\d\d\d\d)$/, '\1年')
s
end
id = '2016'
foo(id)
puts id #=> 2016年
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment