#if文をワンライナーで書くには?
str = "is this a book?"
if str.include?("?")
puts "yes, it is."
end
str = "is this a book?"
puts "yes, it is." if str.include("?")
学んだこと
・オブジェクト名.include?("文字列"とか配列)
・include?は正規表現は使えないっぽい
・三項演算子というものもある
Go to list of users who liked
More than 3 years have passed since last update.
#if文をワンライナーで書くには?
str = "is this a book?"
if str.include?("?")
puts "yes, it is."
end
str = "is this a book?"
puts "yes, it is." if str.include("?")
学んだこと
・オブジェクト名.include?("文字列"とか配列)
・include?は正規表現は使えないっぽい
・三項演算子というものもある
Register as a new user and use Qiita more conveniently
Go to list of users who liked