gpt4 book ai didi

Ruby 方法检查字符串是否不为空?

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

在 Ruby(不是 Rails)的 else if 条件中检查变量是否为空的最佳方法是什么?

elsif not variable.to_s.empty?
# do something
end

elsif !variable.to_s.empty?
# do something
end

elsif variable.to_s.length > 0
# do something
end

最佳答案

string = ""

unless string.to_s.strip.empty?
# ...
end

关于Ruby 方法检查字符串是否不为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35917560/

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