如何获取 Applescript 中循环的索引?

发布于 2024-11-14 07:23:39 字数 204 浏览 1 评论 0原文

我有一个正在循环的不同长度字符串的列表:

set my_list to {"abc", "defg", "hi", "jklmno"}

repeat with the_item in my_list
    -- get index of the_item
end repeat

如何在循环时找到 the_item 的索引?

I have a list of different length strings that I'm looping:

set my_list to {"abc", "defg", "hi", "jklmno"}

repeat with the_item in my_list
    -- get index of the_item
end repeat

How can I find the index of the_item while I'm looping?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

前事休说 2024-11-21 07:23:39

您可以引入一个计数器并在循环的每次迭代中更新它:

set counter to 0
repeat with the_item in my_list
  set counter to counter + 1
  -- do stuff
end repeat

或者使用 不同的循环形式

repeat with n from 1 to count of my_list
  -- do stuff with (item n of my_list)
end repeat

You can either introduce a counter and update it with each iteration through the loop:

set counter to 0
repeat with the_item in my_list
  set counter to counter + 1
  -- do stuff
end repeat

or use a different loop form:

repeat with n from 1 to count of my_list
  -- do stuff with (item n of my_list)
end repeat
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文