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