I have an array with let\'s say, 500 elements. I know I can select the first 100 by doing .first(100), my question is how do I select elements from 100 to 200?
.first(100)
You can do it like this:
array[100..200] # returns the elements in range 100..200 # or array[100,100] # returns 100 elements from position 100
More Information