可枚舉的grep_v()是Ruby中的一個內置方法,它返回包含每個元素的數組(元素!=模式)。如果未給出可選塊,則它將返回一個數組,該數組不包含該模式中的元素。
用法: enu.grep_v(pattern) { |obj| block }
參數:該函數采用一個模式和一個可選塊。
返回值:返回布爾值數組或包含模式中不包含的元素的數組。
例子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]
相關用法
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable find_all()用法及代碼示例
- Ruby Enumerable include?()用法及代碼示例
- Ruby Enumerable uniq()用法及代碼示例
- Ruby Enumerable each_cons()用法及代碼示例
- Ruby Enumerable find()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable grep_v() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。