已不再支援此瀏覽器。
請升級至 Microsoft Edge,以利用最新功能、安全性更新和技術支援。
List.Select(list as list, selection as function) as list
從清單 list 傳回符合選取條件 selection 的值清單。
list
selection
找出清單 {1, -3, 4, 9, -2} 中大於 0 的值。
使用方式
List.Select({1, -3, 4, 9, -2}, each _ > 0)
輸出
{1, 4, 9}
此頁面對您有幫助嗎?