Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是想知道:iOS UI 自动化 JavaScript 是否支持该substring方法?如果是,请提供一个合适的示例,因为我收到了相同的错误响应。
substring
使用:substr()
var str="Hello world!"; var n=str.substr(2,3)
n 的结果将是:
洛
有用。经测试。
PS如果它适合你,请接受它。