Ruby delete_if 块
这是使用 Ruby 1.9。
我有一个delete_if块:
@logHash[date].delete_if{ | logItem | logItem.name == name }
其中logItem.name
是logItem
的名称,name
是logItem
的名称代码>我正在寻找。这工作正常,只是它会删除具有指定 name
的每个 logItem
。有没有办法找到具有相同名称
的第一个项目并仅将其删除?因此,如果有两个具有相同名称
的logItem,我只想删除其中一个。有什么想法吗?
This is using Ruby 1.9.
I have a delete_if block:
@logHash[date].delete_if{ | logItem | logItem.name == name }
Where logItem.name
is the name of the logItem
and name
is the name of the logItem
I'm looking for. This works fine, except it deletes each logItem
with the specified name
. Is there a way to find the first item with an equal name
and only delete that? So if there are two logItems that have the same name
, I only want to delete one of them. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用 Array#index 查找具有匹配名称的第一个项目的索引,然后使用 Array#delete_at 删除它。
I'd use
Array#index
to find the index of the first item which had a matching name, and thenArray#delete_at
to delete it.