List.RemoveItems
List.RemoveItems(list1 as list, list2 as list) as list
從 list2
中移除 list1
中所有出現的指定值。 若 list2
中的值不存在於 list1
,則會傳回原始清單。
從清單 {1, 2, 3, 4, 2, 5, 5} 中移除清單 {2, 4, 6} 中的項目。
使用方式
List.RemoveItems({1, 2, 3, 4, 2, 5, 5}, {2, 4, 6})
輸出
{1, 3, 5, 5}