使用 Automator/Applescript 进行数据输入?
我有一个包含数百个成员的 .txt 格式列表(每行一个 memberID),我需要使用 Automator 将它们添加到 Web 应用程序中。
因此,txt 类似于:
30335842
30335843
30335844
...
我需要将其插入网页上,但我想这是最简单的部分,因为我可以使用自动化器创建操作。
只是不确定每次如何从文本文件中获取新的 id 以便与自动化工作流程一起使用。
非常感谢您的帮助。
I have a list of a few hundred members in .txt format (one memberID per line) and I need to add them to a web app using Automator.
So the txt is something like:
30335842
30335843
30335844
...
And I need to insert this on a web page, but I guess thats the easy part because I can create actions using automator.
Just not sure how to get new id from the text file each time to use with the automator workflow.
Many thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很简单,您基本上读取文件并将结果放入列表中。然后,您可以直接引用列表编号来获取列表中的项目...
或者您可以通过重复循环来获取所有项目...
It's easy, you basically read the file and put the results into a list. Then you can get the items in the list either referencing a list number directly...
or you can get at them all with a repeat loop...