PDF (美式信紙) - 1.4Mb
PDF (A4) - 1.4Mb
當使用 find()
和 remove()
等操作篩選集合或表格時,可以使用布林運算式字串。系統會針對每個文件或列評估運算式一次。
以下布林運算式字串的範例使用 find()
從集合 「apples」 中搜尋所有具有 「red」 顏色屬性的文件
apples.find('color = "red"').execute()
同樣地,要刪除所有紅蘋果
apples.remove('color = "red"').execute()