红宝石 |可枚举的 grep()函数
enumerable的grep()是 Ruby 中的一个内置方法,它返回一个元素数组,其中包含模式中所有元素的每个(元素 == 模式)。如果未给出可选块,则它返回一个包含该模式中元素的数组。
Syntax: enu.grep(pattern) { |obj| block }
Parameters: The function takes a pattern and an optional block.
Return Value: It returns either an array of boolean values or an array containing the elements that are contained in the enumerable.
示例 1 :
# Ruby program for grep method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.grep (3..5)
输出:
[3, 4, 5]
示例 2 :
# Ruby program for grep method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.grep (3..5) { |obj| obj % 2 == 1 }
输出:
[true, false, true]