Today I Learned

hashrocket A Hashrocket project

Ruby has endless ranges

You can access the last n characters of a string by using and endless range:

credit_card = "1234•5678•7126•5555"
last_four = (-4..)
puts "Last four: #{credit_card[last_four]}"
=> Last four: 5555
See More #ruby TILs
Looking for help? Each developer at Hashrocket has years of experience working with Ruby applications of all types and sizes. We're an active presence at Ruby conferences, have written some of the most popular gems, and have worked on many of the web's Ruby on Rails success stories. Contact us today to talk about your Ruby project.