红宝石 |可枚举的 grep_v()函数
enumerable的grep_v()是 Ruby 中的一个内置方法,它返回一个包含每个 (element != pattern) 的元素数组。如果未给出可选块,则它返回一个不包含该模式中元素的数组。
Syntax: enu.grep_v(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 not contained in the pattern.
示例 #1 :
# Ruby program for grep_v method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.grep_v (3..5)
输出:
[1, 2, 6, 7, 8, 9, 10]
示例 #2 :
# Ruby program for grep_v method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.grep_v (3..5) { |obj| obj + 10 }
输出:
[11, 12, 16, 17, 18, 19, 20]