如何在茄子的属性列表中动态插入键和值

时间:2019-03-28 07:57:00

标签: property-list eggplant

我已经获取了一个数据作为列表列表(内部列表由2个值组成,例如(name,sam)),现在我想读取每个内部列表的数据并添加第一个数据作为键并添加第二个数据作为属性列表的值。 例如。, ((name,sam),(date,fourth),(age,twenty))=列表列表

转换为=(名称:“ sam”,日期:“第四”,年龄:“二十”)=属性列表

我该如何实现?

set excelRead to WorkBook(ResourcePath(fileName))
set readColumns to excelRead.Worksheet(sheetName)
set listOfData to cellRange("A:B") of readColumns
put (:) into newPlist
repeat with each item of listOfData
    put item 1 of it into key
    put item 2 of it into Value

end repeat

1 个答案:

答案 0 :(得分:2)

您只需要在变量名前后加上方括号即可将其用作属性列表中的键:

put Value into newPlist.(key)
put Value into (key) of newPlist
put Value into newPlist's (key)

它在SenseTalk参考中:Referencing Property List Keys Using Variables