Applescript 和“开头为”操作员
有没有办法检查(在applescript中)列表(或html文本块)是否以任意数量的值开头。
示例(检查单个值),
if {foobar starts with "<p>"} then
-- do something awesome here
end if
但我想传递多个值来检查
或
或 < /代码>。
提前致谢。
Is there a way to check (in applescript) if a list (or block of html text) starts with
any number of values.
Example (checking for a single value)
if {foobar starts with "<p>"} then
-- do something awesome here
end if
except i would like to pass multiple values to check <p>
or <h1>
or <em>
.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想保持 AppleScript 的“英语”风格,尽管比上面的示例更长,您可以这样做:
一个完整的示例是:
:也会如此:
即使您将:更改为
If you want to stay within the 'English' style of AppleScript, although longer than the example above, you can just do this:
A full example would be:
That will be true even if you change:
to: