Javascript str.search() 多个实例
如何从字符串搜索的多个实例中检索多个索引?
var str = "food";
var index1 = str.search("o"); // 1
var index2 = str.search("o"); // ?
非常感谢, 文
How can I retrieve multiple indexes from multiple instances of a string search?
var str = "food";
var index1 = str.search("o"); // 1
var index2 = str.search("o"); // ?
Thanks much,
Wen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为对于非平凡长度的字符串执行此操作的最佳方法是
RegExp.exec()
函数:I think the best way to do this for strings of non-trivial length is the
RegExp.exec()
function:您可以使用
indexOf
方法的第二个参数来实现您想要的:You can use second parameter of
indexOf
method to achieve what you want: