如何获取 Applescript 中循环的索引?
我有一个正在循环的不同长度字符串的列表:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以引入一个计数器并在循环的每次迭代中更新它:
或者使用 不同的循环形式:
You can either introduce a counter and update it with each iteration through the loop:
or use a different loop form: