0

我正在尝试使用 AppleScript 解析 EverNote .enex 文件(它只是 XML)中的标签。这是我要解析的文件的一个片段:

<note>
...
<tag>Foo</tag>
<tag>Bar</tag>
...
</note>

这是我拥有的 AppleScript 代码(其中 theNote 是对我正在迭代的 XML 树中当前 <note> 的引用):

set theTags to (value of XML element named "tag" of theNote) as string

我希望 theTags 成为一个列表:(Foo,Bar)。希望有一种简单的方法可以做到这一点,而我只是想念它?

4

1 回答 1

0

像这样;

set theTags to value of every XML element of theNote whose name = "tag"
于 2012-12-10T04:52:50.857 回答