Ruby:a[1] || 的简写一个[3] ||一个[6] ...?

发布于 2024-09-12 10:52:17 字数 200 浏览 11 评论 0原文

我有一个正则表达式,它在匹配中返回多个变量。我对匹配中索引子集中的第一个非空变量感兴趣,因此我使用

result = a[1] || a[3] || a[6] || ...

I would like to store the related Index 以及正则表达式本身在配置文件中。不混淆含义的最佳速记符号是什么?

I have a regular expression that returns multiple variables within a match. I am interested in the first non-null variable in a subset of indices within the match, so I am using

result = a[1] || a[3] || a[6] || ...

I would like to store the relevant indices in a configuration file along with the regular expression itself. What is the best shorthand notation that doesn't obfuscate the meaning?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

嘴硬脾气大 2024-09-19 10:52:17

另一种方式:

result = [1,3,6].find {|x| a[x]}

Another way:

result = [1,3,6].find {|x| a[x]}
拥醉 2024-09-19 10:52:17

使用 values_at 获取仅包含指定索引处的元素的数组。然后使用 find {|x| x} 获取第一个不为 nil 或 false 的元素。

result = a.values_at(*indices).find {|x| x}

Use values_at to get an array which contains only the elements at the specified indices. Then use find {|x| x} to get the first element that is not nil or false.

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