10.1.1 布林運算式字串

布林運算式字串可用於在使用 find()remove() 等操作篩選集合或表格時。該運算式會針對每個文件或列評估一次。

以下布林運算式字串的範例使用 find()apples 集合中搜尋所有具有 red 顏色屬性的文件

apples.find('color = "red"').execute()

同樣地,要刪除所有紅蘋果

apples.remove('color = "red"').execute()