Rebol select 之类的函数返回的不仅仅是下一个值?
这存在吗?如果不是,创建它的最佳方法是什么?
Does this exist ? If not what's the best way to create it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这存在吗?如果不是,创建它的最佳方法是什么?
Does this exist ? If not what's the best way to create it ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果你想返回目标值之后的所有值,你可以使用下一个查找,
例如:
如果你只想要接下来的N个项目,添加一个copy/部分...N
例如(接下来的三项):
我将让您添加未找到该值时的错误代码:
If you want to return all the values after the target value, you can use next find
eg:
If you just want the next N items, add a copy/part...N
eg (next three items):
I'll leave you to add the error code for when the value is not found:
使用查找/尾部,
Use find/tail,