Ruby delete_if 块

发布于 2024-10-15 23:49:58 字数 398 浏览 2 评论 0原文

这是使用 Ruby 1.9。

我有一个delete_if块:

@logHash[date].delete_if{ | logItem | logItem.name == name }

其中logItem.namelogItem的名称,namelogItem的名称代码>我正在寻找。这工作正常,只是它会删除具有指定 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桜花祭 2024-10-22 23:49:58

我将使用 Array#index 查找具有匹配名称的第一个项目的索引,然后使用 Array#delete_at 删除它。

index_to_delete = @logHash[date].index {|log_item| log_item.name == name}
@logHash[date].delete_at(index_to_delete)

I'd use Array#index to find the index of the first item which had a matching name, and then Array#delete_at to delete it.

index_to_delete = @logHash[date].index {|log_item| log_item.name == name}
@logHash[date].delete_at(index_to_delete)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文