Skip to content

Instantly share code, notes, and snippets.

@DamianZaremba
Created May 6, 2014 11:14
Show Gist options
  • Save DamianZaremba/7b621249c95b8f41e636 to your computer and use it in GitHub Desktop.
Save DamianZaremba/7b621249c95b8f41e636 to your computer and use it in GitHub Desktop.
irb(main):001:0> hostname = 'puppet-03'
=> "puppet-03"
irb(main):002:0> hostname.split('-', 0)
=> ["puppet", "03"]
irb(main):003:0> hostname.split('-', 1)
=> ["puppet-03"]
irb(main):004:0> hostname.split('-', 2)
=> ["puppet", "03"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment