Ruby arrays are versatile data structures that allow you to store and manipulate collections of data. Array manipulation is a fundamental skill in Ruby programming, enabling developers to manage lists of items efficiently. Below are three practical examples of Ruby array manipulation that demonstrate different techniques and use cases.
Filtering is a common operation when you want to extract specific elements from an array based on a condition. In this case, we will filter out even numbers from a list of integers.
## Define an array of integers
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
## Use the select method to filter even numbers
even_numbers = numbers.select { |number| number.even? }
## Output the result
puts even_numbers.inspect # Output: [2, 4, 6, 8, 10]
select
method iterates over the array, allowing you to specify a condition with a block. Only the elements that meet the condition are included in the new array.reject
method to filter out unwanted elements, such as odd numbers.Mapping is useful when you need to apply a transformation to each element of an array. In this example, we will convert an array of strings to uppercase.
```ruby
fruits = [’apple’, ‘banana’, ‘cherry’]
uppercase_fruits = fruits.map { |fruit| fruit.upcase }
puts uppercase_fruits.inspect # Output: [