gpt4 book ai didi

ruby - 拨动开关/T-Flip 翻转

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:43:17 24 4
gpt4 key购买 nike

我在尝试将触发器应用于以下场景时遇到问题。假设我有以下数组:

[ 'on',
'random text',
'random text',
'random text',
'random text',
'off'
'random text',
'random text',
'on'
'random text',
'off'
'random text',
'random text',
etc...

我想要一个开关根据两个值之一翻转(由数组中的“on”和“off”表示)

感谢任何帮助

最佳答案

这里的数据是一个简单的触发器示例。

x = [ 'on',
'random text',
'random text',
'random text',
'random text',
'off',
'random text',
'random text',
'on',
'random text',
'off',
'random text',
'random text'
]

x.each do |text|
if text['on'] .. text['off']
puts text
end
end

#on
#random text
#random text
#random text
#random text
#off
#on
#random text
#off

关于ruby - 拨动开关/T-Flip 翻转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39052162/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com