如何在 UIAutomation 中从句子中取出特定的单词?
Posted
技术标签:
【中文标题】如何在 UIAutomation 中从句子中取出特定的单词?【英文标题】:how to get specific word out of sentence in UIAutomation? 【发布时间】:2012-10-10 14:39:02 【问题描述】:如果我需要检查某个句子中是否存在某个特定单词,那么我应该在 javascript 中为 UIAutomation 使用什么语法/代码?
【问题讨论】:
【参考方案1】:使用函数 indexOf():
在字符串中搜索“欢迎”:
var str="Hello world, welcome to the universe.";
var n=str.indexOf("welcome");
n 的结果将是:
13
如果要搜索的值不存在,此方法返回 -1。
【讨论】:
以上是关于如何在 UIAutomation 中从句子中取出特定的单词?的主要内容,如果未能解决你的问题,请参考以下文章
在 Xcode Instruments 中,如何导入 UIAutomation 脚本?