Skip to content

Instantly share code, notes, and snippets.

@benlangfeld
Created October 27, 2011 12:21
Show Gist options
  • Save benlangfeld/1319408 to your computer and use it in GitHub Desktop.
Save benlangfeld/1319408 to your computer and use it in GitHub Desktop.
>> a = ["12068180,LC,Q8,10.396,7455,2.617,3.779,-0.388,0.008,4"]
=> ["12068180,LC,Q8,10.396,7455,2.617,3.779,-0.388,0.008,4"]
>> a.first[-1]
=> "4"
>> a.delete_if { |star| star[-1] == '4' }
=> []
>> a
=> []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment