0

我有一个包含数百个 .txt 格式的成员的列表(每行一个 memberID),我需要使用 Automator 将它们添加到 Web 应用程序中。

所以txt是这样的:

30335842
30335843
30335844
...

我需要在网页上插入它,但我想这很容易,因为我可以使用 automator 创建操作。

只是不确定每次如何从文本文件中获取新的 id 以用于自动化工作流程。

非常感谢您的帮助。

4

1 回答 1

0

这很容易,您基本上是读取文件并将结果放入列表中。然后,您可以直接引用列表编号来获取列表中的项目...

set filePath to (path to desktop as text) & "memberID.txt" -- path to the file
set idsText to read file filePath -- get the file text
set idsList to paragraphs of idsText -- turn the text into a list

set nextID to item 2 of idsList

或者您可以通过重复循环来解决所有问题...

set filePath to (path to desktop as text) & "memberID.txt" -- path to the file
set idsText to read file filePath -- get the file text
set idsList to paragraphs of idsText -- turn the text into a list

repeat with i from 1 to count of idsList
    display dialog (item i of idsList)
end repeat
于 2011-05-14T06:41:41.563 回答