gpt4 book ai didi

ruby - 如何在ruby中的下一个if语句中添加一条消息

转载 作者:数据小太阳 更新时间:2023-10-29 08:32:16 25 4
gpt4 key购买 nike

如何将 nextputs "#{web_url.status[0].to_i} 组合在一起并在控制台中显示它,但前提是 if部分为真。

tried:
next if ... && puts "{web_url.status[0].to_i}"



web_url = open(url, :proxy => BaseParser::PROXY, "User-Agent" => BaseParser.rand_ua_string() )

next if web_url.nil?
next if web_url.status[0].to_i == 410
next if web_url.status[0].to_i == 310
next if web_url.status[0].to_i == 404
next if web_url.status[0].to_i == 530

最佳答案

在这里:

next puts "#{web_url.status[0].to_i}" if x == 2 # expression here

示例:

x = 1
until x > 3
next puts("#{x} matched"),x+=1 if x == 2
puts "this iteration has number #{x}"
x += 1
end
# >> this iteration has number 1
# >> 2 matched
# >> this iteration has number 3

浏览文档 keywords .

关于ruby - 如何在ruby中的下一个if语句中添加一条消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20733364/

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